name: Actions Demo run-name: Testing out Actions 🚀 on: push: branches: - main paths-ignore: - "**/+(.forgejo)" jobs: get-changed-folders: runs-on: ubuntu-20.04 steps: - name: get-changed-folders id: get_changed uses: https://github.com/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 }}