-
Notifications
You must be signed in to change notification settings - Fork 4
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 #2022 from camptocamp/example-project-cleanup
Remove workflows moved in GHCI
- Loading branch information
Showing
6 changed files
with
51 additions
and
171 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
20 changes: 0 additions & 20 deletions
20
example-project/.github/workflows/delete-old-workflows-run.yaml
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
51 changes: 51 additions & 0 deletions
51
example-project/.github/workflows/pull-request-automation.yaml
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,51 @@ | ||
name: Auto reviews, merge and close pull requests | ||
|
||
on: | ||
pull_request: | ||
types: | ||
- opened | ||
- reopened | ||
|
||
jobs: | ||
auto-merge: | ||
name: Auto reviews pull requests from bots | ||
runs-on: ubuntu-24.04 | ||
timeout-minutes: 5 | ||
|
||
steps: | ||
- name: Print event | ||
run: echo "${GITHUB}" | jq | ||
env: | ||
GITHUB: ${{ toJson(github) }} | ||
- name: Print context | ||
uses: actions/github-script@v7 | ||
with: | ||
script: |- | ||
console.log(context); | ||
- name: Auto reviews GHCI updates | ||
uses: actions/github-script@v7 | ||
with: | ||
script: |- | ||
github.rest.pulls.createReview({ | ||
owner: context.repo.owner, | ||
repo: context.repo.repo, | ||
pull_number: context.payload.pull_request.number, | ||
event: 'APPROVE', | ||
}) | ||
if: |- | ||
startsWith(github.head_ref, 'ghci/audit/') | ||
&& (github.event.pull_request.user.login == 'geo-ghci-test[bot]' | ||
|| github.event.pull_request.user.login == 'geo-ghci-int[bot]' | ||
|| github.event.pull_request.user.login == 'geo-ghci[bot]') | ||
- name: Auto reviews Renovate updates | ||
uses: actions/github-script@v7 | ||
with: | ||
script: |- | ||
github.rest.pulls.createReview({ | ||
owner: context.repo.owner, | ||
repo: context.repo.repo, | ||
pull_number: context.payload.pull_request.number, | ||
event: 'APPROVE', | ||
}) | ||
if: |- | ||
github.event.pull_request.user.login == 'renovate[bot]' |