17 lines
501 B
YAML
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 }}
|
|
|