Skip to content

Commit

Permalink
build: automation for readme updates
Browse files Browse the repository at this point in the history
  • Loading branch information
barp committed May 21, 2023
1 parent 2a9084b commit 577a13e
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions .github/workflows/published.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
name: Update files

on:
release:
types: [published]

jobs:
publish:
runs-on: ubuntu-latest
steps:
- name: Update files
uses: MathieuSoysal/file-updater-for-release@v1.0.1
with:
files: README.md
prefix: "containerdbg_"
- name: Create Pull Request
uses: peter-evans/create-pull-request@v4
with:
token: ${{ secrets.GITHUB_TOKEN }}
commit-message: "docs: update readme"
title: Update readme
body: Update readme to reflect release changes
branch: update-readme
base: main

0 comments on commit 577a13e

Please sign in to comment.