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

22 lines
613 B
YAML

name: Actions Demo
run-name: Testing out Actions 🚀
on:
push:
paths-ignore:
- '**/.forgejo'
jobs:
get-changed-folders:
runs-on: ubuntu-20.04
steps:
- name: Current token
run: echo ${{ secrets.GITEA_TOKEN }}
- name: get-changed-folders
id: get_changed
uses: https://github.com/Stockopedia/action-get-changed-files@v2.0.0
with:
github-token: ${{ secrets.GITEA_TOKEN }}
ignore: "**/+(.forgejo)"
foldersOnly: true
- name: Echo changed files
run: echo ${{ steps.get_changed.outputs.changed }}