We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4aa82af commit d69d282Copy full SHA for d69d282
.github/workflows/event.yml
@@ -1,13 +1,22 @@
1
-name: GitHub Event Handler
+# NOTE: currently azure-sdk-actions only hosts check enforcer code.
2
+# If further functionality is added, this name should be updated to reflect
3
+# the more generic behavior
4
+name: Check Enforcer
5
6
on:
7
check_suite:
8
types: [completed]
9
issue_comment:
10
types: [created]
11
12
+permissions: {}
13
+
14
jobs:
15
event-handler:
16
+ permissions:
17
+ statuses: write # to set status (azure/azure-sdk-actions)
18
+ pull-requests: read # to read pull requests (azure/azure-sdk-actions)
19
+ checks: read # to read check status (azure/azure-sdk-actions)
20
name: Handle ${{ github.event_name }} ${{ github.event.action }} event
21
runs-on: ubuntu-latest
22
steps:
0 commit comments