-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
I had many times the problem of setting the action to point to its own branch to test, only to forget about setting it again to the main branch. This adds a check that makes the PR fails unless that the branch is actually pointing to main.
- Loading branch information
Showing
2 changed files
with
21 additions
and
1 deletion.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -15,5 +15,24 @@ jobs: | |
- uses: actions/[email protected] | ||
- name: Check that the image builds | ||
run: docker build . --file Dockerfile | ||
validate-action: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/[email protected] | ||
# This checks that .github/workflows/review-bot.yml is pointing towards the main branch | ||
# as, during development, we change this to use the code from the test branch and | ||
# we may forget to set it back to main | ||
- name: Validate that action points to main branch | ||
run: | | ||
BRANCH=$(yq '.jobs.review-approvals.steps[0].uses' $FILE_NAME | cut -d "@" -f2) | ||
# If the branch is not the main branch | ||
if [ "$BRANCH" != "$GITHUB_BASE_REF" ]; then | ||
echo "Action points to $BRANCH. It has to point to $GITHUB_BASE_REF instead!" | ||
exit 1 | ||
else | ||
echo "Action is correctly pointing to $GITHUB_BASE_REF" | ||
fi | ||
env: | ||
FILE_NAME: ".github/workflows/review-bot.yml" | ||
|
||
# Todo: Add the rest of the action https://github.com/paritytech/stale-pr-finder/blob/main/.github/workflows/publish.yml |
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