Skip to content

Commit

Permalink
Add Github workflow for updating Github Actions.
Browse files Browse the repository at this point in the history
  • Loading branch information
michael-rapp committed Dec 15, 2024
1 parent c4d8a91 commit 686f6cc
Showing 1 changed file with 62 additions and 0 deletions.
62 changes: 62 additions & 0 deletions .github/workflows/update_github_actions.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,62 @@
---
name: Update GitHub Actions
on:
pull_request:
types:
- opened
- reopened
- synchronize
paths:
- .github/workflows/test_changelog.yml
- build
- build.bat
- build_system/main.py
- build_system/core/**
- build_system/util/**
- build_system/targets/paths.py
- build_system/targets/dependencies/*
- build_system/targets/dependencies/github/*
schedule:
- cron: 0 3 * * 0
workflow_dispatch:
jobs:
update_github_actions:
name: Update GitHub Actions
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
with:
ref: bugfix
- name: Setup Python
uses: actions/setup-python@v5
with:
python-version-file: .version-python
- name: Setup git
uses: fregante/setup-git-user@v2
- name: Generate token
uses: actions/create-github-app-token@v1
id: app-token
with:
app-id: ${{ secrets.TOKEN_APP_ID }}
private-key: ${{ secrets.TOKEN_APP_SECRET }}
- name: Update GitHub Actions
run: |
GITHUB_TOKEN=${{ steps.app-token.outputs.token }} ./build update_github_actions
git add .github/workflows/*.y*ml
- name: Submit pull request
id: pull-request
uses: peter-evans/create-pull-request@v7
with:
token: ${{ steps.app-token.outputs.token }}
commit-message: Update GitHub Actions.
branch: update-github-actions
title: Update GitHub Actions
labels: bot
assignees: mrapp-ke
body: Update the versions of outdated GitHub Actions.
- name: Enable auto-merge
if: ${{ steps.pull-request.outputs.pull-request-operation == 'created' }}
env:
GH_TOKEN: ${{ steps.app-token.outputs.token }}
run: gh pr merge --merge --auto "${{ steps.pull-request.outputs.pull-request-number }}"

0 comments on commit 686f6cc

Please sign in to comment.