imgproxy-config-updated #67
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# | |
# This action is triggered by the repository_dispatch event | |
# published by the imgproxy/imgproxy repository to imgproxy/imgproxy-helm. | |
# It creates an issue and assign it to the gem's maintainers. | |
# | |
--- | |
name: Create an issue about updated imgproxy | |
on: | |
repository_dispatch: | |
types: | |
- imgproxy-config-updated | |
jobs: | |
create-issue: | |
runs-on: ubuntu-latest | |
permissions: | |
contents: read | |
issues: write | |
steps: | |
- name: Checkout the repository | |
uses: actions/checkout@v4 | |
- name: Create an issue | |
uses: JasonEtco/create-an-issue@v2 | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
with: | |
filename: .github/templates/ISSUE.md |