Skip to content

Commit

Permalink
Test rebuild trigger
Browse files Browse the repository at this point in the history
  • Loading branch information
goodov committed Aug 30, 2024
1 parent 1a4ff35 commit 15702e7
Show file tree
Hide file tree
Showing 3 changed files with 25 additions and 1 deletion.
15 changes: 15 additions & 0 deletions .github/workflows/generate-test-seed.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ name: Generate Test Seed

on:
pull_request:
types: [opened, synchronize, reopened, labeled]
paths:
- '.github/workflows/generate-test-seed.yml'
- 'seed/seed.json'
Expand All @@ -10,6 +11,8 @@ on:
jobs:
build:
runs-on: ubuntu-latest
if: github.event.action != 'labeled' || github.event.label.name == 'CI/rebuild'

env:
ACTION_RUN_URL: '${{ github.server_url }}/${{ github.repository }}/actions/runs/${{ github.run_id }}'
BASE_SHA: '${{ github.event.pull_request.base.sha }}'
Expand All @@ -18,11 +21,23 @@ jobs:
SEED_VERSION: 'pull/${{ github.event.pull_request.number }}@${{ github.sha }}'

steps:
- name: Remove CI/rebuild label
if: contains(github.event.pull_request.labels.*.name, 'CI/rebuild')
env:
GH_TOKEN: ${{ github.token }}
run: gh pr edit ${{ github.event.pull_request.number }} --repo ${{ github.repository }} --remove-label 'CI/rebuild'

- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4

- name: Fetch base commit
run: git fetch --depth=1 origin "$BASE_SHA"

- name: Rebase on base branch
if: "!contains(github.event.pull_request.labels.*.name, 'CI/no-rebase')"
run: |
git fetch origin "${{ github.event.pull_request.base.sha }}"
git rebase FETCH_HEAD
- name: Setup Python
uses: actions/setup-python@39cd14951b08e74b54015e9e001cdefcf80e669f # v5
with:
Expand Down
9 changes: 9 additions & 0 deletions .github/workflows/test-src.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,22 @@ name: Tracker&Griffin tests

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

Check failure on line 7 in .github/workflows/test-src.yml

View workflow job for this annotation

GitHub Actions / build

key "merge_group" is duplicated in "on" section. previously defined at line:6,col:3

jobs:
build:
runs-on: ubuntu-latest
if: github.event.action != 'labeled' || github.event.label.name == 'CI/rebuild'

steps:
- name: Remove CI/rebuild label
if: github.event.action == 'labeled' && github.event.label.name == 'CI/rebuild'
env:
GH_TOKEN: ${{ github.token }}
run: gh pr edit ${{ github.event.pull_request.number }} --remove-label 'CI/rebuild'

- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4

- name: npm install
Expand Down
2 changes: 1 addition & 1 deletion seed/seed.json
Original file line number Diff line number Diff line change
Expand Up @@ -2950,5 +2950,5 @@
"name": "BraveWebcompatExceptionsServiceReleaseStudy"
}
],
"version": "1"
"version": "2"
}

0 comments on commit 15702e7

Please sign in to comment.