Update pr-convention safdasdfsd #28
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: PR Files Changed | ||
on: | ||
pull_request: | ||
types: [opened, synchronize] | ||
jobs: | ||
list-files: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Fetch PR files | ||
uses: trilom/file-changes-action@v1 | ||
with: | ||
githubToken: ${{ secrets.GITHUB_TOKEN }} | ||
- name: Display file changes | ||
run: | | ||
echo "Files changed: ${{ steps.file_changes.outputs.files }}" | ||
echo "Added files: ${{ steps.file_changes.outputs.added }}" | ||
echo "Modified files: ${{ steps.file_changes.outputs.modified }}" | ||
echo "Deleted files: ${{ steps.file_changes.outputs.deleted }}" | ||
- uses: actions/clubhouse-pr@v2 | ||
with: | ||
regex: '^[a-zA-Z]+(\([a-zA-Z]+\))?: .+' | ||
allowed_prefixes: "feat,fix,docs,style,refactor,test,chore,ci,perf,revert" | ||
prefix_case_sensitive: false | ||
- uses: actions/clubhouse-pr@v2 | ||
with: | ||
ghToken: ${{ secrets.GITHUB_TOKEN }} | ||
chToken: ${{ secrets.CLUBHOUSE_API_TOKEN | ||
Check failure on line 32 in .github/workflows/pr-convention.yml GitHub Actions / PR Files ChangedInvalid workflow file
|