Skip to content

Commit

Permalink
ci: Added workflow to test
Browse files Browse the repository at this point in the history
  • Loading branch information
mike-pisman committed Oct 24, 2023
1 parent 73f6975 commit 442fa8f
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions .github/workflows/update_changelog.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
name: Release Package

on:
workflow_dispatch:

jobs:
update_changelog:
runs-on: arc-runner-k8s
permissions: write-all
steps:
- name: Generate a token
id: generate_token
uses: actions/create-github-app-token@v1
with:
app_id: ${{ secrets.APP_ID }}
private_key: ${{ secrets.APP_PEM }}
owner: ${{ github.repository_owner }}
- name: Repository Dispatch
uses: peter-evans/repository-dispatch@v2
with:
token: ${{ steps.generate_token.outputs.token }}
repository: unipoll/api.wiki
event-type: update_api_changelog

0 comments on commit 442fa8f

Please sign in to comment.