ci: use label ready

This commit is contained in:
Nicolas Meienberger 2023-06-20 23:35:42 +02:00
parent d8b403f2aa
commit e1f0b379db
3 changed files with 17 additions and 2 deletions

View File

@ -10,6 +10,7 @@ on:
- ready_for_review
- reopened
- unlocked
branches: ["renovate/*"]
pull_request_review:
types:
- submitted

View File

@ -1,7 +1,7 @@
name: Tipi CI
on:
pull_request:
types: [opened, synchronize, reopened, ready_for_review]
types: [opened, synchronize, reopened, ready_for_review, labeled]
jobs:
ci:

View File

@ -1,7 +1,8 @@
name: Update app version in Renovate Branches
on:
push:
pull_request:
types: [opened, synchronize, reopened, ready_for_review]
branches: ["renovate/*"]
jobs:
@ -37,3 +38,16 @@ jobs:
- name: Commit & Push Changes
run: |
git add "apps/*/config.json" && git commit --amend --no-edit --no-verify && git push --force-with-lease || true
- name: Label this PR as "ready"
if: github.event_name == 'pull_request'
uses: actions/github-script@v4
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
script: |
github.issues.addLabels({
issue_number: context.issue.number,
owner: context.repo.owner,
repo: context.repo.repo,
labels: ["ready"]
})