mirror of
https://github.com/FreeTubeApp/FreeTube
synced 2024-12-04 16:11:46 +01:00
cdfb087dfb
Bumps [alex-page/github-project-automation-plus](https://github.com/alex-page/github-project-automation-plus) from 0.8.2 to 0.8.3. - [Release notes](https://github.com/alex-page/github-project-automation-plus/releases) - [Commits](https://github.com/alex-page/github-project-automation-plus/compare/v0.8.2...v0.8.3) --- updated-dependencies: - dependency-name: alex-page/github-project-automation-plus dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
71 lines
2.3 KiB
YAML
71 lines
2.3 KiB
YAML
# This is a basic workflow to help you get started with Actions
|
|
|
|
name: Project Board Automation
|
|
|
|
on:
|
|
issues:
|
|
types: [closed, deleted, reopened, opened]
|
|
|
|
jobs:
|
|
assign-issues-to-projects:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
|
|
# For bug reports
|
|
- name: New bug issue
|
|
uses: alex-page/github-project-automation-plus@v0.8.3
|
|
if: contains(github.event.issue.labels.*.name, 'bug') && github.event.action == 'opened'
|
|
with:
|
|
project: Bug Reports
|
|
column: To assign
|
|
repo-token: ${{ secrets.PUSH_TOKEN }}
|
|
action: update
|
|
|
|
- name: Bug issue closed
|
|
uses: alex-page/github-project-automation-plus@v0.8.3
|
|
if: github.event.action == 'closed' || github.event.action == 'deleted'
|
|
with:
|
|
action: delete
|
|
project: Bug Reports
|
|
column: To assign
|
|
repo-token: ${{ secrets.PUSH_TOKEN }}
|
|
|
|
- name: Bug issue reopened
|
|
uses: alex-page/github-project-automation-plus@v0.8.3
|
|
if: contains(github.event.issue.labels.*.name, 'bug') && github.event.action == 'reopened'
|
|
with:
|
|
project: Bug Reports
|
|
column: To assign
|
|
repo-token: ${{ secrets.PUSH_TOKEN }}
|
|
action: update
|
|
|
|
# For feature requests
|
|
- name: New feature issue
|
|
uses: alex-page/github-project-automation-plus@v0.8.3
|
|
if: contains(github.event.issue.labels.*.name, 'enhancement') && github.event.action == 'opened'
|
|
with:
|
|
project: Feature Requests
|
|
column: To assign
|
|
repo-token: ${{ secrets.PUSH_TOKEN }}
|
|
action: update
|
|
|
|
- name: Feature request issue closed
|
|
uses: alex-page/github-project-automation-plus@v0.8.3
|
|
if: github.event.action == 'closed' || github.event.action == 'deleted'
|
|
with:
|
|
action: delete
|
|
project: Feature Requests
|
|
column: To assign
|
|
repo-token: ${{ secrets.PUSH_TOKEN }}
|
|
|
|
- name: Feature request issue reopened
|
|
uses: alex-page/github-project-automation-plus@v0.8.3
|
|
if: contains(github.event.issue.labels.*.name, 'enhancement') && github.event.action == 'reopened'
|
|
with:
|
|
project: Feature Requests
|
|
column: To assign
|
|
repo-token: ${{ secrets.PUSH_TOKEN }}
|
|
action: update
|
|
|
|
|