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

Hackathon24 release notes action #96

Draft
wants to merge 26 commits into
base: main
Choose a base branch
from
Draft
Changes from all commits
Commits
Show all changes
26 commits
Select commit Hold shift + click to select a range
b25a41b
[hackathon24] add a release-note action
jazzsequence Nov 20, 2024
6dca8f3
use my docs repo fork
jazzsequence Nov 20, 2024
ee3589e
add debugging
jazzsequence Nov 20, 2024
36b1262
[hackathon24] replace . with -
jazzsequence Nov 20, 2024
3ff7159
[hackathon24] cat the full path
jazzsequence Nov 20, 2024
cd53dda
[hackathon24] remove debugging
jazzsequence Nov 20, 2024
c7752ff
[hackathon24] set up remote with PAT
jazzsequence Nov 20, 2024
fd6c398
[hackathon24] create the PR against the right repo
jazzsequence Nov 20, 2024
a06ab3d
[hackathon24] specify destination repository
jazzsequence Nov 20, 2024
1b6c80c
[hackathon24] use the base branch that we're actually creating test r…
jazzsequence Nov 20, 2024
fc43c21
[hackathon24] remove repository owner
jazzsequence Nov 20, 2024
0f1eb46
[hackathon24] get base branch from release
jazzsequence Nov 20, 2024
7b94bd6
[hackathon24] put things back
jazzsequence Nov 20, 2024
76cec58
[hackathon24] remove debugging
jazzsequence Nov 20, 2024
a03100a
[hackathon24] check if the branch exists on the remote
jazzsequence Nov 20, 2024
43eea51
[hackathon24] checkout and push the right branch
jazzsequence Nov 20, 2024
677f10b
[hackathon24] fix the branch to push
jazzsequence Nov 20, 2024
27a3a83
[hackathon24] remove bullet
jazzsequence Nov 21, 2024
dde903d
[hackathon24] use the action
jazzsequence Nov 21, 2024
4a7f6c5
[hackathon24] add permissions
jazzsequence Nov 21, 2024
def1619
[hackathon24] add a checkout action to debug
jazzsequence Nov 21, 2024
4f4c7bc
[hackathon24] update the token
jazzsequence Nov 21, 2024
a7ac260
[hackathon24] remove duplicative token & add to env
jazzsequence Nov 21, 2024
0c364e0
[hackathon24] remove unnecessary inputs
jazzsequence Nov 21, 2024
b3b3d6c
[hackathon24] use the develop branch
jazzsequence Nov 21, 2024
c5d96ad
[hackathon24] re-ad github_token
jazzsequence Nov 21, 2024
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
20 changes: 20 additions & 0 deletions .github/workflows/release-notes.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
name: Create Release Notes PR
on:
release:
types: [published]

jobs:
add-release-notes:
runs-on: ubuntu-latest
permissions:
contents: read

steps:
- name: Generate release notes
uses: pantheon-systems/action-release-notes@develop
env:
GH_TOKEN: ${{ secrets.TOKEN }}
with:
github_token: ${{ secrets.TOKEN }}
repo_name: Plugin Pipeline Example
categories: wordpress,plugins
Loading