Skip to content

Commit

Permalink
Merge pull request #21 from m7kvqbe1/feat/create-dogfood-gha-workflow
Browse files Browse the repository at this point in the history
Create test workflow for dogfooding
  • Loading branch information
m7kvqbe1 authored Oct 15, 2024
2 parents 3e77c37 + 62c4900 commit 3b9e95f
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions .github/workflows/move_issue.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
name: Test Move Issue Action

on:
workflow_dispatch:
inputs:
branch:
description: "Name of branch to test"
required: true
type: string

jobs:
test-move-issue:
runs-on: ubuntu-latest
steps:
- name: Move Issue to Project Column
uses: m7kvqbe1/github-action-move-issues@${{ github.event.inputs.branch }}
with:
github-token: ${{ secrets.PAT_TOKEN }}
project-url: ${{ secrets.PROJECT_URL }}
target-labels: "Size: Small, Size: Medium"
target-column: "Todo"
ignored-columns: "In Progress, Done"

0 comments on commit 3b9e95f

Please sign in to comment.