From 5feba60d6cd2213a0c7ecb06681f31f85d01c3bb Mon Sep 17 00:00:00 2001 From: Yamil Medina Date: Mon, 13 May 2024 14:18:42 +0200 Subject: [PATCH 1/2] chore: add jira linking for documentation puposes (#2755) --- .github/workflows/jira-lint-and-link.yml | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 .github/workflows/jira-lint-and-link.yml diff --git a/.github/workflows/jira-lint-and-link.yml b/.github/workflows/jira-lint-and-link.yml new file mode 100644 index 00000000000..54c2cb22544 --- /dev/null +++ b/.github/workflows/jira-lint-and-link.yml @@ -0,0 +1,19 @@ +name: Link and Lint PR with Jira Ticket Number +on: + merge_group: + pull_request: + types: [opened, edited, synchronize] +jobs: + add-jira-description: + runs-on: ubuntu-latest + # Run only if the PR is not from a Fork / external contributor + if: (!startsWith(github.ref, 'refs/heads/dependabot/') && github.repository_owner == 'wireapp') + steps: + - uses: cakeinpanic/jira-description-action@v0.8.0 + name: jira-description-action + with: + github-token: ${{ secrets.GITHUB_TOKEN }} + jira-token: ${{ secrets.JIRA_TOKEN }} + jira-base-url: https://wearezeta.atlassian.net + skip-branches: '^(production-release|main|master|release\/v\d+)$' #optional + fail-when-jira-issue-not-found: false From 044746391a183572329eddab633046446391b062 Mon Sep 17 00:00:00 2001 From: yamilmedina Date: Mon, 13 May 2024 14:43:34 +0200 Subject: [PATCH 2/2] Empty-Commit test