-
Notifications
You must be signed in to change notification settings - Fork 19
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
maint: update repo for pipeline team ownership (#306)
## Which problem is this PR solving? - finish handoff of repo to pipeline team ## Short description of the changes - add github workflow for github project - remove now unused workflows - fix dependabot groups - add release.yml for release notes - add more detail to releasing doc - we may want more changes later after we release, for now just doing known details
- Loading branch information
1 parent
7960572
commit 592fede
Showing
6 changed files
with
65 additions
and
65 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
# .github/release.yml | ||
|
||
changelog: | ||
exclude: | ||
labels: | ||
- no-changelog | ||
categories: | ||
- title: 💥 Breaking Changes 💥 | ||
labels: | ||
- "version: bump major" | ||
- breaking-change | ||
- title: 💡 Enhancements | ||
labels: | ||
- "type: enhancement" | ||
- title: 🐛 Fixes | ||
labels: | ||
- "type: bug" | ||
- title: 🛠 Maintenance | ||
labels: | ||
- "type: maintenance" | ||
- "type: dependencies" | ||
- "type: documentation" | ||
- title: 🤷 Other Changes | ||
labels: | ||
- "*" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
name: Add to project | ||
on: | ||
issues: | ||
types: [opened] | ||
pull_request_target: | ||
types: [opened] | ||
jobs: | ||
add-to-project: | ||
runs-on: ubuntu-latest | ||
name: Add issues and PRs to project | ||
steps: | ||
- uses: actions/add-to-project@main | ||
with: | ||
project-url: https://github.com/orgs/honeycombio/projects/27 | ||
github-token: ${{ secrets.GHPROJECTS_TOKEN }} |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters