Skip to content

Instantly share code, notes, and snippets.

@mmornati
Created April 14, 2019 21:35
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mmornati/de1f6fb3eaa75d5c2f7c248598d2277b to your computer and use it in GitHub Desktop.
Save mmornati/de1f6fb3eaa75d5c2f7c248598d2277b to your computer and use it in GitHub Desktop.
GitHub Relase Notes generation published into the GitHub wiki
workflow "On Milestone" {
on = "milestone"
resolves = ["mmornati/wiki-page-creator-action@master"]
}
action "action-filter" {
uses = "actions/bin/filter@master"
args = "action closed"
}
action "Create Release Notes" {
uses = "mmornati/release-notes-generator-action@master"
secrets = ["GITHUB_TOKEN"]
needs = ["action-filter"]
env = {
USE_MILESTONE_TITLE = "true"
OUTPUT_FOLDER = "temp_release_notes"
}
}
action "mmornati/wiki-page-creator-action@master" {
uses = "mmornati/wiki-page-creator-action@master"
needs = ["Create Release Notes"]
secrets = [
"GH_PAT",
]
env = {
ACTION_MAIL = "mmornati@users.noreply.github.com"
ACTION_NAME = "mmornati"
WIKI_REPO_URL = "mmornati/test-repo.wiki.git"
SKIP_MD = "README.md,test.md"
MD_FOLDER = "temp_release_notes"
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment