Create pyscript-js-updater.yml

This commit is contained in:
Marvin Scham
2022-07-27 06:51:39 +02:00
committed by GitHub
parent 2d8f6d3e7a
commit 49607173e0

View File

@@ -0,0 +1,33 @@
name: Auto PR updated PyScript
on:
# schedule: [{cron: "0 4 * * *"}]
workflow_dispatch:
push: {branches: ["main"]}
jobs:
push_to_branch_and_create_pr:
name: Create PR for JS
runs-on: ubuntu-18.04
steps:
- uses: actions/checkout@v2
name: Check out current commit
- uses: suisei-cn/actions-download-file@v1
id: downloadfile
name: Download JS file
with:
url: https://pyscript.net/alpha/pyscript.js
target: assets
auto-match: true
- name: Create Pull Request
uses: peter-evans/create-pull-request@v4.0.4
with:
commit-message: Update PyScript JS
title: Update PyScript JS
body: |
This is an automated PR.
<sub>[workflow](https://github.com/marvinscham/pa-pyscript/blob/master/.github/workflows/pyscript-js-updater.yml).</sub>
branch: js-update
branch-suffix: "random"