-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #67 from a110605/add_mergify
add mergify.yml
- Loading branch information
Showing
2 changed files
with
40 additions
and
0 deletions.
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 |
---|---|---|
@@ -0,0 +1,19 @@ | ||
pull_request_rules: | ||
- name: Automatically open backport PR to release-harvester-v1.5 | ||
conditions: | ||
- base=master | ||
actions: | ||
backport: | ||
branches: | ||
- "release-harvester-v1.5" | ||
assignees: | ||
- "{{ author }}" | ||
labels: | ||
- "v1.5 backport PR" | ||
|
||
- name: Ask to resolve conflict | ||
conditions: | ||
- conflict | ||
actions: | ||
comment: | ||
message: This pull request is now in conflict. Could you fix it @{{author}}? 🙏 |
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 |
---|---|---|
@@ -0,0 +1,21 @@ | ||
name: Build Dashboard (Release) | ||
on: | ||
push: | ||
tags: | ||
- v[1-9].* | ||
|
||
jobs: | ||
build-validation: | ||
name: Build Test | ||
uses: ./.github/workflows/test.yaml | ||
build: | ||
name: Build and Upload Package | ||
uses: ./.github/workflows/build-and-upload.yaml | ||
needs: | ||
- build-validation | ||
permissions: | ||
contents: read | ||
packages: write | ||
id-token: write | ||
with: | ||
CI_BUILD_TAG: ${{github.ref_name}} |