Skip to content

Commit

Permalink
add: patch actions workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
qingyiwebt authored Jul 21, 2024
1 parent cb656b3 commit 9a455a8
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions .github/workflows/patch.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
# This is a basic workflow that is manually triggered

name: Patch new version

on:
workflow_dispatch:

jobs:
greet:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
with:
path: quickjs-universal
- name: Patch
run: |
pushd quickjs-universal
pwsh ./Patch.ps1
popd
- name: Create Pull Request
uses: peter-evans/create-pull-request@v6
with:
path: quickjs-universal
add-paths: PatchedSources/

0 comments on commit 9a455a8

Please sign in to comment.