We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4195955 commit 5f4cc52Copy full SHA for 5f4cc52
1 file changed
.github/workflows/pull-request.yml
@@ -41,6 +41,7 @@ jobs:
41
PR_NUMBER: ${{github.event.pull_request.number}}
42
- name: Push changes
43
uses: peter-evans/create-pull-request@v8.1.0
44
+ id: changes
45
with:
46
token: ${{github.token}}
47
commit-message: ${{steps.info.outputs.title}}
@@ -56,6 +57,13 @@ jobs:
56
57
labels: |
58
dependencies
59
auto
60
+ - name: Report status
61
+ if: >
62
+ steps.changes.outputs.pull-request-operation == 'created' ||
63
+ steps.changes.outputs.pull-request-operation == 'updated'
64
+ uses: actions/github-script@v8.0.0
65
+ with:
66
+ script: core.setFailed('Build changes detected')
67
check-formatting-all:
68
name: Check Formatting (All)
69
runs-on: ubuntu-latest
0 commit comments