Add actions-demo.yml
Some checks failed
Actions Demo / get-changed-folders (push) Failing after 0s
Actions Demo / test (push) Successful in 0s

This commit is contained in:
TheThomaas 2024-06-26 20:44:32 +00:00
parent fcbf4534c9
commit 7e54136a3a

View file

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