diff options
| author | Jose Santiago Vales Mena <[email protected]> | 2025-09-29 14:35:15 -0700 |
|---|---|---|
| committer | GitHub <[email protected]> | 2025-09-29 14:35:15 -0700 |
| commit | c7e53eae28735c3bb685ae5dfd7c1aaa4205b7bd (patch) | |
| tree | 1905abf87ac8d1beb64f2b9727c531c94d6b4fa9 /.github/workflows/generate-sample-issue-template.yml | |
| parent | 9014cc397cb44ec5530bd27dec14d7c2e490498b (diff) | |
| parent | 28716b55969187008ca25683bd226a9a8a4e9efd (diff) | |
Merge pull request #21 from microsoft/user/5an7y/issues_based_on_samples
User/5an7y/issues based on samples
Diffstat (limited to '.github/workflows/generate-sample-issue-template.yml')
| -rw-r--r-- | .github/workflows/generate-sample-issue-template.yml | 37 |
1 files changed, 0 insertions, 37 deletions
diff --git a/.github/workflows/generate-sample-issue-template.yml b/.github/workflows/generate-sample-issue-template.yml deleted file mode 100644 index e0a60173..00000000 --- a/.github/workflows/generate-sample-issue-template.yml +++ /dev/null @@ -1,37 +0,0 @@ -name: Generate Sample Issue Template - -on: - push: - paths: - - '.github/CODEOWNERS' - pull_request: - paths: - - '.github/CODEOWNERS' - - -jobs: - generate-template: - runs-on: ubuntu-latest - - steps: - - name: Checkout repository - uses: actions/checkout@v4 - - - name: Set up Python - uses: actions/setup-python@v5 - with: - python-version: '3.x' - - - name: Install dependencies - run: pip install pyyaml - - - name: Run the generator script - run: python .github/ISSUE_TEMPLATE/sample_issue_generator.py - - - name: Commit and push changes - run: | - git config user.name "github-actions[bot]" - git config user.email "github-actions[bot]@users.noreply.github.com" - git add .github/ISSUE_TEMPLATE/sample_issue.yml - git commit -m "Auto-generate sample issue template from CODEOWNERS" || echo "No changes to commit" - git push origin HEAD:${{ github.head_ref }} |
