feat(authN) - statical fetching of authenticated user on app layer #1314
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Sync GitHub issues to Jira example | |
on: [issues] | |
concurrency: | |
group: sync-issues-to-jira-${{ github.event.issue.number }} | |
jobs: | |
sync-issues: | |
name: Sync issues to Jira | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: cloudoperators/sync-issues-github-jira@main | |
with: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
JIRA_URL: ${{ secrets.JIRA_URL }} | |
JIRA_USERNAME: ${{ secrets.JIRA_USERNAME }} | |
JIRA_API_TOKEN: ${{ secrets.JIRA_API_TOKEN }} | |
JIRA_COMPONENT: ${{ secrets.JIRA_COMPONENT }} | |
JIRA_PROJECT_KEY: ${{ secrets.JIRA_PROJECT_KEY }} | |
JIRA_EPIC_KEY: ${{ secrets.JIRA_EPIC_KEY }} | |
JIRA_AUTHORIZATION: ${{ secrets.JIRA_AUTHORIZATION }} |