Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
28 changes: 23 additions & 5 deletions .github/workflows/merge-check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,28 @@ on:
branches:
- master

env:
# Ignore some actions for the merge check:
# - This action itself
# - Public API check, doc broken link check: we allow them to fail.
# - Minimal tests for stable Rust: we allow them to fail.
# - Extended binding tests: it may take long to run. We don't want to wait for them.
IGNORED_ACTIONS: |
[
"ready-to-merge",
"check-broken-links-in-docs",
"check-public-api-changes",
"minimal-tests-core/x86_64-unknown-linux-gnu/stable",
"minimal-tests-core/i686-unknown-linux-gnu/stable",
"minimal-tests-core/x86_64-apple-darwin/stable",
"extended-tests-v8",
"extended-tests-jikesrvm",
"extended-tests-julia",
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Did you forget extended-tests-openjdk?

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Yeah. I added it back.

"extended-tests-openjdk",
"extended-tests-ruby (release)",
"extended-tests-ruby (debug)"
]

jobs:
ready-to-merge:
runs-on: ubuntu-latest
Expand All @@ -16,11 +38,7 @@ jobs:
timeout-minutes: 120
uses: "WyriHaximus/[email protected]"
with:
# Ignore some actions (based on what merge_group triggers):
# - this action
# - minimal tests for stable Rust (we allow them to fail)
# - binding tests (it may take long to run)
ignoreActions: "ready-to-merge,check-broken-links-in-docs,check-public-api-changes,minimal-tests-core/x86_64-unknown-linux-gnu/stable,minimal-tests-core/i686-unknown-linux-gnu/stable,minimal-tests-core/x86_64-apple-darwin/stable,v8-binding-test,openjdk-binding-test,jikesrvm-binding-test,julia-binding-test,ruby-binding-test (release),ruby-binding-test (debug)"
ignoreActions: "${{ join(fromJson(env.IGNORED_ACTIONS)) }}"
# This action uses API. We have a quota of 1000 per hour.
checkInterval: 600
env:
Expand Down