mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-06-19 13:21:37 +00:00
ci(workflow): handle all cases of wip (#2162)
* ci(workflow): handle WIP all cases * ci(workflow): refine WIP title checks for PR notifications * ci(workflow): change PR trigger to pull_request_target to enable notifications from fork PRs
This commit is contained in:
parent
8d93eb6e3d
commit
4321de607c
1 changed files with 6 additions and 5 deletions
11
.github/workflows/pr-notify-slack.yml
vendored
11
.github/workflows/pr-notify-slack.yml
vendored
|
|
@ -1,9 +1,9 @@
|
||||||
# Notify Slack when a PR is ready for review (not draft, title does not contain WIP).
|
# Notify Slack when a PR is ready for review (not draft, title does not contain WIP/wip/Wip.).
|
||||||
# Triggers: new PR (non-draft, no WIP), draft -> ready, or title edited to remove WIP.
|
# Triggers: new PR (non-draft, no WIP), draft -> ready, or title edited to remove WIP.
|
||||||
name: PR notify Slack
|
name: PR notify Slack
|
||||||
|
|
||||||
on:
|
on:
|
||||||
pull_request:
|
pull_request_target:
|
||||||
types: [opened, reopened, ready_for_review, edited]
|
types: [opened, reopened, ready_for_review, edited]
|
||||||
workflow_dispatch:
|
workflow_dispatch:
|
||||||
|
|
||||||
|
|
@ -28,15 +28,16 @@ jobs:
|
||||||
notify:
|
notify:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
if: |
|
if: |
|
||||||
github.event_name == 'pull_request' &&
|
|
||||||
github.event.pull_request.draft == false &&
|
github.event.pull_request.draft == false &&
|
||||||
!contains(github.event.pull_request.title, 'WIP') &&
|
!startsWith(github.event.pull_request.title, 'wip') &&
|
||||||
|
!startsWith(github.event.pull_request.title, '[wip]') &&
|
||||||
(
|
(
|
||||||
github.event.action != 'edited' ||
|
github.event.action != 'edited' ||
|
||||||
(
|
(
|
||||||
github.event.changes.title &&
|
github.event.changes.title &&
|
||||||
(
|
(
|
||||||
contains(github.event.changes.title.from, 'WIP')
|
startsWith(github.event.changes.title.from, 'wip') ||
|
||||||
|
startsWith(github.event.changes.title.from, '[wip]')
|
||||||
)
|
)
|
||||||
)
|
)
|
||||||
)
|
)
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue