chore: re-work flux diff based on the most recent changes by K8s at h… #5715
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
--- | |
name: "Create GH issues based on TODO comments" | |
on: # yamllint disable-line rule:truthy | |
pull_request: | |
branches: | |
- main | |
push: | |
branches: | |
- main | |
- next | |
jobs: | |
build: | |
runs-on: "ubuntu-24.04" | |
steps: | |
- name: Generate Token | |
uses: actions/create-github-app-token@v1 | |
id: generate-token | |
with: | |
app-id: "${{ secrets.BOT_APP_ID }}" | |
private-key: "${{ secrets.BOT_APP_PRIVATE_KEY }}" | |
- name: Checkout | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
token: "${{ steps.generate-token.outputs.token }}" | |
- name: Create Github Issue from TODO comments | |
uses: alstr/todo-to-issue-action@v4.10 | |
id: "todo" | |
with: | |
token: "${{ steps.generate-token.outputs.token }}" |