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 45d2012 commit 4e67e97Copy full SHA for 4e67e97
.github/workflows/block-changes.yml
@@ -0,0 +1,18 @@
1
+name: Block specific changes
2
+
3
+on:
4
+ pull_request:
5
6
+jobs:
7
+ block-direct-markdown-module-changes:
8
+ name: Block modifying Markdown Module Reference files directly
9
+ runs-on: ubuntu-latest
10
+ steps:
11
+ - name: Checkout repository
12
+ uses: actions/checkout@85e6279cec87321a52edac9c87bce653a07cf6c2 # v4.2.2
13
+ - name: Check if changes came from nginx.org action
14
+ id: check_pr_source
15
+ run: |
16
+ PR_SRC=$(jq -r ".pull_request.user.login" < "$GITHUB_EVENT_PATH")
17
+ echo $PR_SRC
18
0 commit comments