diff --git a/.github/pr-labeler.yml b/.github/pr-labeler.yml new file mode 100644 index 0000000..701d0e0 --- /dev/null +++ b/.github/pr-labeler.yml @@ -0,0 +1,5 @@ +feature: ['feature/*', 'feat/*'] +fix: ['fix/*', 'hotfix/*'] +chore: chore/* +release: release/* +# https://github.com/TimonVS/pr-labeler-action \ No newline at end of file diff --git a/.github/pull_request_template.md b/.github/pull_request_template.md index 917f9f8..fedd9cb 100644 --- a/.github/pull_request_template.md +++ b/.github/pull_request_template.md @@ -1 +1 @@ -> See JIRA https://skedify.atlassian.net/browse/SKED- \ No newline at end of file +> See JIRA ENGAGE- diff --git a/.github/workflows/pr-labeler.yml b/.github/workflows/pr-labeler.yml new file mode 100644 index 0000000..7be2983 --- /dev/null +++ b/.github/workflows/pr-labeler.yml @@ -0,0 +1,14 @@ +on: + pull_request: + types: [opened] + +jobs: + pr-labeler: + runs-on: ubuntu-latest + steps: + - uses: TimonVS/pr-labeler-action@v3 + with: + # optional, .github/pr-labeler.yml is the default value + configuration-path: .github/pr-labeler.yml + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} \ No newline at end of file