mirror of
https://github.com/jellyfin/jellyfin.git
synced 2024-11-17 19:08:53 -07:00
2ee33bd602
Bumps [alex-page/github-project-automation-plus](https://github.com/alex-page/github-project-automation-plus) from v0.6.0 to v0.7.1. - [Release notes](https://github.com/alex-page/github-project-automation-plus/releases) - [Commits](https://github.com/alex-page/github-project-automation-plus/compare/v0.6.0...50502d399cbb98cefe7ce1f99f93f78c6756562e) Signed-off-by: dependabot[bot] <support@github.com>
67 lines
2.5 KiB
YAML
67 lines
2.5 KiB
YAML
name: Automation
|
|
|
|
on:
|
|
pull_request:
|
|
issues:
|
|
issue_comment:
|
|
|
|
jobs:
|
|
main:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Does PR has the stable backport label?
|
|
uses: Dreamcodeio/does-pr-has-label@v1.2
|
|
id: checkLabel
|
|
with:
|
|
label: stable backport
|
|
|
|
- name: Remove from 'Current Release' project
|
|
uses: alex-page/github-project-automation-plus@v0.7.1
|
|
if: (github.event.pull_request || github.event.issue.pull_request) && !steps.checkLabel.outputs.hasLabel
|
|
continue-on-error: true
|
|
with:
|
|
project: Current Release
|
|
action: delete
|
|
repo-token: ${{ secrets.GH_TOKEN }}
|
|
|
|
- name: Add to 'Release Next' project
|
|
uses: alex-page/github-project-automation-plus@v0.7.1
|
|
if: (github.event.pull_request || github.event.issue.pull_request) && github.event.action == 'opened'
|
|
continue-on-error: true
|
|
with:
|
|
project: Release Next
|
|
column: In progress
|
|
repo-token: ${{ secrets.GH_TOKEN }}
|
|
|
|
- name: Add to 'Current Release' project
|
|
uses: alex-page/github-project-automation-plus@v0.7.1
|
|
if: (github.event.pull_request || github.event.issue.pull_request) && steps.checkLabel.outputs.hasLabel
|
|
continue-on-error: true
|
|
with:
|
|
project: Current Release
|
|
column: In progress
|
|
repo-token: ${{ secrets.GH_TOKEN }}
|
|
|
|
- name: Check number of comments from the team member
|
|
if: github.event.issue.pull_request == '' && github.event.comment.author_association == 'MEMBER'
|
|
id: member_comments
|
|
run: echo "::set-output name=number::$(curl -s ${{ github.event.issue.comments_url }} | jq '.[] | select(.author_association == "MEMBER") | .author_association' | wc -l)"
|
|
|
|
- name: Move issue to needs triage
|
|
uses: alex-page/github-project-automation-plus@v0.7.1
|
|
if: github.event.issue.pull_request == '' && github.event.comment.author_association == 'MEMBER' && steps.member_comments.outputs.number <= 1
|
|
continue-on-error: true
|
|
with:
|
|
project: Issue Triage for Main Repo
|
|
column: Needs triage
|
|
repo-token: ${{ secrets.GH_TOKEN }}
|
|
|
|
- name: Add issue to triage project
|
|
uses: alex-page/github-project-automation-plus@v0.7.1
|
|
if: github.event.issue.pull_request == '' && github.event.action == 'opened'
|
|
continue-on-error: true
|
|
with:
|
|
project: Issue Triage for Main Repo
|
|
column: Pending response
|
|
repo-token: ${{ secrets.GH_TOKEN }}
|