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