test-actions/.forgejo/workflows/actions-demo.yml
TheThomaas e135c872e6
Some checks failed
Actions Demo / get-changed-folders (push) Failing after 4s
Actualiser .forgejo/workflows/actions-demo.yml
2024-06-26 21:05:47 +00:00

20 lines
529 B
YAML

name: Actions Demo
run-name: Testing out Actions 🚀
on:
push:
branches:
- main
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: false
- name: Echo changed files
run: echo ${{ steps.get_changed.outputs.changed }}