mirror of
https://github.com/ditkrg/todo-to-issue-action.git
synced 2026-01-22 13:56:44 +00:00
33 lines
990 B
YAML
33 lines
990 B
YAML
name: Create TODO Issues in Another Repository
|
|
|
|
# NOTE: This is an example for when the TARGET_REPO feature is released.
|
|
# The current published version of the action does not yet have this feature.
|
|
|
|
on:
|
|
push:
|
|
branches: [main, master]
|
|
|
|
permissions:
|
|
contents: read
|
|
issues: write
|
|
|
|
jobs:
|
|
todo-to-issue:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
with:
|
|
fetch-depth: 0 # Required to get the diff between commits
|
|
|
|
- name: TODO to Issue
|
|
# Use the local version of the action (after you've made the changes)
|
|
uses: ./
|
|
with:
|
|
TARGET_REPO: "target-repo" # Replace with your target repository name (without org)
|
|
OWNER: "my-org" # Replace with your organization name
|
|
|
|
|
|
# Other optional configurations:
|
|
# IDENTIFIERS: '{"TODO": "TODO:", "FIXME": "Fix needed:"}' # Custom identifiers for TODOs
|
|
# LABELS: 'todo,fixme' # Default labels to apply to all created issues
|