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 0553d16 commit 346830eCopy full SHA for 346830e
.github/workflows/ci.yml
@@ -11,6 +11,7 @@ jobs:
11
steps:
12
- uses: actions/[email protected]
13
- name: "Check that author is present in the NOTICE file"
14
+ if: github.event_name == 'pull_request'
15
run: |
16
AUTHOR=$(git log -1 --format="%aE")
17
if [ -z "$AUTHOR" ]; then
@@ -23,7 +24,7 @@ jobs:
23
24
else
25
printf "\nOK: Author is present in the NOTICE file.\n";
26
fi
- - name: "If a PR, check that distribution files are unmodified"
27
+ - name: "Check that distribution files are unmodified"
28
if: github.event_name == 'pull_request'
29
30
if git --no-pager diff --name-only $(git rev-parse origin/${{ github.base_ref }})...${{ github.sha }} | grep -q "^dist/"; then
0 commit comments