diff --git a/.github/workflows/add-to-project.yaml b/.github/workflows/add-to-project.yaml index 048a6056..470c652c 100644 --- a/.github/workflows/add-to-project.yaml +++ b/.github/workflows/add-to-project.yaml @@ -8,7 +8,11 @@ on: types: - labeled workflow_call: - + inputs: + labeled: + required: false + default: bug, ci, dependencies, documentation, feature, refactor, security, customer + type: string jobs: add-to-project: name: Add issue/PR to SynchroHub platform project @@ -20,4 +24,4 @@ jobs: # to the issue project-url: ${{ secrets.PLATFORM_PROJECT_URL }} github-token: ${{ secrets.ADD_TO_PROJECT_PAT }} - labeled: bug, ci, dependencies, documentation, feature, refactor, security, customer + labeled: ${{ inputs.labeled }} diff --git a/RELEASE_NOTES.md b/RELEASE_NOTES.md index faa32e50..66dd1f5b 100644 --- a/RELEASE_NOTES.md +++ b/RELEASE_NOTES.md @@ -1,9 +1,11 @@ # github-workflows Release Notes -## 0.0.2-dev - 2023-08-22 +## 0.0.2-dev - 2023-08-31 ### Features +- add-to-project workflow: make labels configurable as inputs (PR #27 by + @chicco785) - Markdown workflow: use customized prettier action (PR #19 by @chicco785) ### Bug Fixes