Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

add-to-project workflow: make labels configurable as inputs #27

Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 6 additions & 2 deletions .github/workflows/add-to-project.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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 }}
4 changes: 3 additions & 1 deletion RELEASE_NOTES.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down