mirror of
https://github.com/rcourtman/Pulse.git
synced 2026-05-05 07:08:42 +00:00
Split issue triage workflows
This commit is contained in:
parent
f6656950a9
commit
5f49acd75b
6 changed files with 678 additions and 285 deletions
30
.github/workflows/issue-version-retest-comment.yml
vendored
Normal file
30
.github/workflows/issue-version-retest-comment.yml
vendored
Normal file
|
|
@ -0,0 +1,30 @@
|
|||
name: Issue Version Retest Comment
|
||||
|
||||
on:
|
||||
issues:
|
||||
types:
|
||||
- opened
|
||||
- reopened
|
||||
|
||||
permissions:
|
||||
contents: read
|
||||
issues: write
|
||||
|
||||
jobs:
|
||||
comment:
|
||||
if: ${{ github.event.issue.pull_request == null }}
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: Check out triage helper
|
||||
uses: actions/checkout@v4
|
||||
with:
|
||||
sparse-checkout: |
|
||||
.github/scripts/issue-version-triage.cjs
|
||||
sparse-checkout-cone-mode: false
|
||||
|
||||
- name: Post retest guidance when needed
|
||||
uses: actions/github-script@v7
|
||||
with:
|
||||
script: |
|
||||
const triage = require(`${process.env.GITHUB_WORKSPACE}/.github/scripts/issue-version-triage.cjs`);
|
||||
await triage.postRetestComment({ github, context, core });
|
||||
Loading…
Add table
Add a link
Reference in a new issue