Reorganize workflow files and names into 3 main categories: - Data: Data collection and synchronization workflows - Infrastructure: Infrastructure tasks (mirroring, forking) - Maintenance: All PR checks, labels, notifications, and maintenance tasks All workflows now have capitalized category prefixes for consistency. Also update internal workflow references to reflect new names.
23 lines
605 B
YAML
23 lines
605 B
YAML
name: "Data: Create Jira ticket"
|
|
run-name: 'Sync Jira - Issue #${{ github.event.issue.number }} ("${{ github.event.issue.title }}")'
|
|
|
|
on:
|
|
issues:
|
|
types: [opened]
|
|
jobs:
|
|
sync:
|
|
name: Sync Items
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- name: Sync
|
|
uses: igorpecovnik/github-action-issue-to-jira@master
|
|
env:
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
with:
|
|
jiraHost: armbian.atlassian.net
|
|
jiraUsername: ${{ secrets.JIRA_USER }}
|
|
jiraPassword: ${{ secrets.JIRA_PASSWORD }}
|
|
project: AR
|
|
assignee: default_assignee
|