mirror of
https://github.com/crazy-max/ghaction-upx.git
synced 2024-11-22 02:16:09 -07:00
59 lines
1.4 KiB
YAML
59 lines
1.4 KiB
YAML
name: upx-releases-json
|
|
|
|
concurrency:
|
|
group: ${{ github.workflow }}-${{ github.ref }}
|
|
cancel-in-progress: true
|
|
|
|
on:
|
|
workflow_dispatch:
|
|
schedule:
|
|
- cron: '0 10 * * 0'
|
|
push:
|
|
branches:
|
|
- 'master'
|
|
pull_request:
|
|
paths-ignore:
|
|
- '.github/upx-releases.json'
|
|
|
|
jobs:
|
|
generate:
|
|
uses: crazy-max/.github/.github/workflows/releases-json.yml@002654044825b3c2b9856af61b8a2aaf389706b1
|
|
with:
|
|
repository: upx/upx
|
|
artifact_name: upx-releases-json
|
|
filename: upx-releases.json
|
|
secrets: inherit
|
|
|
|
open-pr:
|
|
runs-on: ubuntu-22.04
|
|
if: github.event_name != 'pull_request'
|
|
needs:
|
|
- generate
|
|
steps:
|
|
-
|
|
name: Checkout
|
|
uses: actions/checkout@v3
|
|
-
|
|
name: Download
|
|
uses: actions/download-artifact@v3
|
|
with:
|
|
name: upx-releases-json
|
|
path: .github
|
|
-
|
|
name: Commit changes
|
|
run: |
|
|
git add -A .
|
|
-
|
|
name: Create PR
|
|
uses: peter-evans/create-pull-request@2b011faafdcbc9ceb11414d64d0573f37c774b04
|
|
with:
|
|
base: master
|
|
branch: bot/upx-releases-json
|
|
commit-message: "update .github/upx-releases.json"
|
|
signoff: true
|
|
delete-branch: true
|
|
title: "Update `.github/upx-releases.json`"
|
|
body: |
|
|
Update `.github/upx-releases.json` to keep in sync with [https://github.com/upx/upx](https://github.com/upx/upx).
|
|
draft: false
|