An open API service indexing awesome lists of open source software.

https://github.com/nofusscomputing/action_project

GH Action/Workflow for Project issue/PR triage
https://github.com/nofusscomputing/action_project

Last synced: about 2 months ago
JSON representation

GH Action/Workflow for Project issue/PR triage

Awesome Lists containing this project

README

          

## No Fuss Computing - GH Action / Workflow for Project Issue/PR Triage

To use this reusable workflow add the following file to path `.github/workflows/project.yaml`

``` yaml

---

name: Project

on:
issues:
types:
- opened
- reopened
- transferred
- milestoned
- demilestoned
- closed
- assigned
pull_request:
types:
- opened
- reopened
- closed

jobs:

project:
name: Project
uses: nofusscomputing/action_project/.github/workflows/project.yaml@development
with:
PROJECT_URL: https://github.com/orgs/nofusscomputing/projects/7
secrets:
WORKFLOW_TOKEN: ${{ secrets.WORKFLOW_TOKEN }}

```