Skip to content

Assets

Assets #102

Workflow file for this run

name: Assets
on:
schedule:
- cron: "59 23 * * *"
workflow_dispatch:
jobs:
download-binary:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: ⤵️ Get Kubeconform binary
run: |
./.github/scripts/get-kubeconform-binary.sh
- name: Generate GitHub App Token
uses: tibdex/github-app-token@v2
id: generate-token
with:
app_id: ${{ secrets.APP_ID }}
private_key: ${{ secrets.APP_PRIVATE_KEY }}
- name: ✍🏻 Create PR
uses: peter-evans/create-pull-request@v7
with:
commit-message: Update Kubeconform binary
title: Update Kubeconform binary
body: |
This PR updates the Kubeconform binary used by Devantler.AgeCLI to the latest version.
branch: update-kubeconform-binary
delete-branch: true
labels: dependencies
reviewers: devantler
assignees: devantler
signoff: true
token: ${{ steps.generate-token.outputs.token }}