From 7e54136a3aa7a17f06caeba0d385181b80fe335f Mon Sep 17 00:00:00 2001 From: TheThomaas Date: Wed, 26 Jun 2024 20:44:32 +0000 Subject: [PATCH] Add actions-demo.yml --- .forgejo/workflows/actions-demo.yml | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 .forgejo/workflows/actions-demo.yml diff --git a/.forgejo/workflows/actions-demo.yml b/.forgejo/workflows/actions-demo.yml new file mode 100644 index 0000000..3f36609 --- /dev/null +++ b/.forgejo/workflows/actions-demo.yml @@ -0,0 +1,17 @@ +name: Actions Demo +run-name: Testing out Actions 🚀 +on: [push] +jobs: + get-changed-folders: + runs-on: ubuntu-latest + steps: + - name: get-changed-folders + id: get_changed + uses: Stockopedia/action-get-changed-files@v2.0.0 + with: + github-token: ${{ secrets.GITHUB_TOKEN }} + ignore: "**/+(.forgejo)" + foldersOnly: true + - name: Echo changed files + run: echo ${{ steps.get_changed.outputs.changed }} + \ No newline at end of file