mirror of
https://github.com/nvim-treesitter/nvim-treesitter.git
synced 2026-07-19 11:50:09 -04:00
ci: use token for automated PRs
* Use a Github App token to allow CI to run automatically (Following https://github.com/peter-evans/create-pull-request/blob/main/docs/concepts-guidelines.md#authenticating-with-github-app-generated-tokens) * Enable automerge * make lint workflow only run once on PRs to master
This commit is contained in:
parent
6f586875e3
commit
b5736698be
3 changed files with 29 additions and 16 deletions
3
.github/workflows/lint.yml
vendored
3
.github/workflows/lint.yml
vendored
|
|
@ -1,8 +1,9 @@
|
||||||
name: Linting and style checking
|
name: Linting and style checking
|
||||||
|
|
||||||
on:
|
on:
|
||||||
push:
|
|
||||||
pull_request:
|
pull_request:
|
||||||
|
branches:
|
||||||
|
- "master"
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
luacheck:
|
luacheck:
|
||||||
|
|
|
||||||
23
.github/workflows/update-lockfile.yml
vendored
23
.github/workflows/update-lockfile.yml
vendored
|
|
@ -14,6 +14,12 @@ jobs:
|
||||||
with:
|
with:
|
||||||
ref: master
|
ref: master
|
||||||
|
|
||||||
|
- uses: actions/create-github-app-token@v1
|
||||||
|
id: app-token
|
||||||
|
with:
|
||||||
|
app-id: ${{ vars.TOKEN_ID }}
|
||||||
|
private-key: ${{ secrets.TOKEN_PRIVATE_KEY }}
|
||||||
|
|
||||||
- name: Prepare
|
- name: Prepare
|
||||||
env:
|
env:
|
||||||
NVIM_TAG: stable
|
NVIM_TAG: stable
|
||||||
|
|
@ -32,21 +38,20 @@ jobs:
|
||||||
# Pretty print
|
# Pretty print
|
||||||
cp lockfile.json /tmp/lockfile.json
|
cp lockfile.json /tmp/lockfile.json
|
||||||
cat /tmp/lockfile.json | jq --sort-keys > lockfile.json
|
cat /tmp/lockfile.json | jq --sort-keys > lockfile.json
|
||||||
|
|
||||||
- name: Commit changes
|
|
||||||
run: |
|
|
||||||
git config user.name 'GitHub'
|
|
||||||
git config user.email 'noreply@github.com'
|
|
||||||
git add lockfile.json
|
|
||||||
UPDATED_PARSERS=$(/tmp/jd -f merge /tmp/old_lockfile.json lockfile.json | jq -r 'keys | join(", ")')
|
UPDATED_PARSERS=$(/tmp/jd -f merge /tmp/old_lockfile.json lockfile.json | jq -r 'keys | join(", ")')
|
||||||
echo "UPDATED_PARSERS=$UPDATED_PARSERS" >> $GITHUB_ENV
|
echo "UPDATED_PARSERS=$UPDATED_PARSERS" >> $GITHUB_ENV
|
||||||
git commit -m "Update parsers: $UPDATED_PARSERS" || echo 'No commit necessary!'
|
|
||||||
git clean -xf
|
|
||||||
|
|
||||||
- name: Create Pull Request
|
- name: Create Pull Request
|
||||||
uses: peter-evans/create-pull-request@v5
|
uses: peter-evans/create-pull-request@v5
|
||||||
with:
|
with:
|
||||||
|
token: ${{ steps.app-token.outputs.token }}
|
||||||
|
commit-message: "Update parsers: ${{ env.UPDATED_PARSERS }}"
|
||||||
title: "Update lockfile.json: ${{ env.UPDATED_PARSERS }}"
|
title: "Update lockfile.json: ${{ env.UPDATED_PARSERS }}"
|
||||||
|
body: "[beep boop](https://github.com/peter-evans/create-pull-request)"
|
||||||
branch: update-lockfile-pr
|
branch: update-lockfile-pr
|
||||||
base: ${{ github.head_ref }}
|
base: ${{ github.head_ref }}
|
||||||
draft: true
|
|
||||||
|
- name: Enable Pull Request Automerge
|
||||||
|
env:
|
||||||
|
GH_TOKEN: ${{ steps.app-token.outputs.token }}
|
||||||
|
run: gh pr merge --rebase --auto update-lockfile-pr
|
||||||
|
|
|
||||||
19
.github/workflows/update-readme.yml
vendored
19
.github/workflows/update-readme.yml
vendored
|
|
@ -13,6 +13,12 @@ jobs:
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v4
|
- uses: actions/checkout@v4
|
||||||
|
|
||||||
|
- uses: actions/create-github-app-token@v1
|
||||||
|
id: app-token
|
||||||
|
with:
|
||||||
|
app-id: ${{ vars.TOKEN_ID }}
|
||||||
|
private-key: ${{ secrets.TOKEN_PRIVATE_KEY }}
|
||||||
|
|
||||||
- name: Prepare
|
- name: Prepare
|
||||||
env:
|
env:
|
||||||
NVIM_TAG: stable
|
NVIM_TAG: stable
|
||||||
|
|
@ -21,18 +27,19 @@ jobs:
|
||||||
|
|
||||||
- name: Check README
|
- name: Check README
|
||||||
run: |
|
run: |
|
||||||
git config user.email 'actions@github'
|
|
||||||
git config user.name 'Github Actions'
|
|
||||||
nvim -l scripts/update-readme.lua || echo 'Needs update'
|
nvim -l scripts/update-readme.lua || echo 'Needs update'
|
||||||
git add README.md
|
|
||||||
git commit -m 'Update README' || echo 'No commit necessary!'
|
|
||||||
git clean -xf
|
|
||||||
|
|
||||||
- name: Create Pull Request
|
- name: Create Pull Request
|
||||||
uses: peter-evans/create-pull-request@v5
|
uses: peter-evans/create-pull-request@v5
|
||||||
with:
|
with:
|
||||||
|
token: ${{ steps.app-token.outputs.token }}
|
||||||
commit-message: Update README
|
commit-message: Update README
|
||||||
title: Update README
|
title: Update README
|
||||||
|
body: "[beep boop](https://github.com/peter-evans/create-pull-request)"
|
||||||
branch: update-readme-pr
|
branch: update-readme-pr
|
||||||
base: ${{ github.head_ref }}
|
base: ${{ github.head_ref }}
|
||||||
draft: true
|
|
||||||
|
- name: Enable Pull Request Automerge
|
||||||
|
env:
|
||||||
|
GH_TOKEN: ${{ steps.app-token.outputs.token }}
|
||||||
|
run: gh pr merge --rebase --auto update-readme-pr
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue