test-actions/.forgejo/workflows/actions-demo.yml
TheThomaas 6cd3fd8103
Some checks failed
Actions Demo / get-changed-folders (push) Failing after 2s
Actions Demo / test (push) Successful in 0s
Actualiser .forgejo/workflows/actions-demo.yml
2024-06-26 20:45:50 +00:00

17 lines
501 B
YAML

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: 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 }}