Bumps the crazy-max-dot-github group with 3 updates in the / directory: [crazy-max/.github/.github/workflows/releases-json.yml](https://github.com/crazy-max/.github), [crazy-max/.github/.github/workflows/pr-assign-author.yml](https://github.com/crazy-max/.github) and [crazy-max/.github/.github/workflows/zizmor.yml](https://github.com/crazy-max/.github). Updates `crazy-max/.github/.github/workflows/releases-json.yml` from 1.6.0 to 1.7.1 - [Release notes](https://github.com/crazy-max/.github/releases) - [Commits](d89fe92d80...64a0bfaf6e) Updates `crazy-max/.github/.github/workflows/pr-assign-author.yml` from 1.6.0 to 1.7.1 - [Release notes](https://github.com/crazy-max/.github/releases) - [Commits](d89fe92d80...64a0bfaf6e) Updates `crazy-max/.github/.github/workflows/zizmor.yml` from 1.6.0 to 1.7.1 - [Release notes](https://github.com/crazy-max/.github/releases) - [Commits](d89fe92d80...64a0bfaf6e) --- updated-dependencies: - dependency-name: crazy-max/.github/.github/workflows/pr-assign-author.yml dependency-version: 1.7.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: crazy-max-dot-github - dependency-name: crazy-max/.github/.github/workflows/releases-json.yml dependency-version: 1.7.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: crazy-max-dot-github - dependency-name: crazy-max/.github/.github/workflows/zizmor.yml dependency-version: 1.7.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: crazy-max-dot-github ... Signed-off-by: dependabot[bot] <support@github.com>
64 lines
1.7 KiB
YAML
64 lines
1.7 KiB
YAML
name: regclient-releases-json
|
|
|
|
concurrency:
|
|
group: ${{ github.workflow }}-${{ github.ref }}
|
|
cancel-in-progress: true
|
|
|
|
permissions:
|
|
contents: read
|
|
|
|
on:
|
|
workflow_dispatch:
|
|
schedule:
|
|
- cron: '0 */12 * * *'
|
|
push:
|
|
branches:
|
|
- 'main'
|
|
pull_request:
|
|
paths:
|
|
- '.github/workflows/regclient-releases-json.yml'
|
|
|
|
jobs:
|
|
generate:
|
|
uses: crazy-max/.github/.github/workflows/releases-json.yml@64a0bfaf6e6bb1c448d6e4c42b11034ee7094f16 # v1.7.1
|
|
with:
|
|
repository: regclient/regclient
|
|
artifact_name: regclient-releases-json
|
|
filename: regclient-releases.json
|
|
|
|
open-pr:
|
|
runs-on: ubuntu-latest
|
|
if: github.event_name != 'pull_request'
|
|
permissions:
|
|
contents: write
|
|
pull-requests: write
|
|
needs:
|
|
- generate
|
|
steps:
|
|
-
|
|
name: Checkout
|
|
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
|
|
-
|
|
name: Download
|
|
uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1
|
|
with:
|
|
name: regclient-releases-json
|
|
path: .github
|
|
-
|
|
name: Commit changes
|
|
run: |
|
|
git add -A .
|
|
-
|
|
name: Create PR
|
|
uses: peter-evans/create-pull-request@5f6978faf089d4d20b00c7766989d076bb2fc7f1 # v8.1.1
|
|
with:
|
|
base: main
|
|
branch: bot/regclient-releases-json
|
|
commit-message: "github: update .github/regclient-releases.json"
|
|
signoff: true
|
|
delete-branch: true
|
|
title: "Update `.github/regclient-releases.json`"
|
|
body: |
|
|
Update `.github/regclient-releases.json` to keep in sync with [https://github.com/regclient/regclient](https://github.com/regclient/regclient).
|
|
draft: false
|