Skip to content

Commit

Permalink
fix: add action to block change made on GitHub (#208)
Browse files Browse the repository at this point in the history
  • Loading branch information
raisedadead committed May 30, 2023
1 parent 0e3f508 commit 3312177
Showing 1 changed file with 28 additions and 0 deletions.
28 changes: 28 additions & 0 deletions .github/workflows/dont-use-github.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
name: Do not use GitHub Web

on:
pull_request:
types: [synchronize, opened, reopened]

jobs:
check-first-commit:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
with:
fetch-depth: 0

- name: Check for web UI first commit
run: |
PR_NUMBER=$(jq --raw-output .pull_request.number "$GITHUB_EVENT_PATH")
COMMITS_URL="https://api.github.com/repos/$GITHUB_REPOSITORY/pulls/$PR_NUMBER/commits"
first_commit=$(curl --header "Authorization: Bearer ${{ secrets.GITHUB_TOKEN }}" "$COMMITS_URL" | jq '.[0]')
web_ui_commit=$(echo "$first_commit" | jq 'select(.commit.message | test("Update"))')
if [ -n "$web_ui_commit" ]; then
echo "The first commit in the pull request was created via the GitHub web UI."
exit 1
fi

0 comments on commit 3312177

Please sign in to comment.