From 30387934db19c229b33370a3239cf37f0f04e254 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C3=87etin?= <69278826+cetincakiroglu@users.noreply.github.com> Date: Tue, 14 May 2024 17:24:01 +0300 Subject: [PATCH] update workflow --- .github/workflows/pr-checker.yml | 110 +++++++++++++++---------------- 1 file changed, 55 insertions(+), 55 deletions(-) diff --git a/.github/workflows/pr-checker.yml b/.github/workflows/pr-checker.yml index 1c4fe10f1ab..fdf82ab12c4 100644 --- a/.github/workflows/pr-checker.yml +++ b/.github/workflows/pr-checker.yml @@ -1,71 +1,71 @@ name: Pr Checker on: - pull_request: - types: [edited, synchronize, opened, reopened] + pull_request: + types: [edited, synchronize, opened, reopened] permissions: - contents: read - pull-requests: write + contents: read + pull-requests: write jobs: - pr-open-check: - permissions: - issues: write - pull-requests: write - runs-on: ubuntu-latest - env: - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} - steps: - - name: Verify Linked Issue - uses: hattan/verify-linked-issue-action@v1.1.5 + pr-open-check: + permissions: + issues: write + pull-requests: write + runs-on: ubuntu-latest env: - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} - with: - message: 'Thanks a lot for your contribution! But, PR does not seem to be linked to any issues. Please [manually link to an issue](https://docs.github.com/en/issues/tracking-your-work-with-issues/linking-a-pull-request-to-an-issue#manually-linking-a-pull-request-or-branch-to-an-issue-using-the-issue-sidebar) or mention it in the description using #.' + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + steps: + - name: Verify Linked Issue + uses: hattan/verify-linked-issue-action@v1.1.5 + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + with: + message: 'Thanks a lot for your contribution! But, PR does not seem to be linked to any issues. Please [manually link to an issue](https://docs.github.com/en/issues/tracking-your-work-with-issues/linking-a-pull-request-to-an-issue#manually-linking-a-pull-request-or-branch-to-an-issue-using-the-issue-sidebar) or mention it in the description using #.' - - uses: actions/checkout@v3 - - uses: actions/setup-node@v3 - with: - node-version: 16 - cache: 'npm' + - uses: actions/checkout@v3 + - uses: actions/setup-node@v3 + with: + node-version: 16 + cache: 'npm' - - name: Install packages - run: | - npm install + - name: Install packages + run: | + npm install - - name: Code Format - id: codeFormat - run: | - npm run format:check + - name: Code Format + id: codeFormat + run: | + npm run format:check - #- name: Unit Test - # id: unitTest - # run: | - # npm run test:headless + #- name: Unit Test + # id: unitTest + # run: | + # npm run test:headless - - name: Add Code Format Fail Comment - if: always() && steps.codeFormat.outcome == 'failure' - uses: thollander/actions-comment-pull-request@v1 - with: - message: | - Thanks a lot for your contribution! But, PR does not seem to fit our code format standards. Please run the 'npm run format' command and commit the changes. + - name: Add Code Format Fail Comment + if: always() && steps.codeFormat.outcome == 'failure' + uses: thollander/actions-comment-pull-request@v1 + with: + message: | + Thanks a lot for your contribution! But, PR does not seem to fit our code format standards. Please run the 'npm run format' command and commit the changes. - - name: Add Unit Test Fail Comment - if: always() && steps.unitTest.outcome == 'failure' - uses: thollander/actions-comment-pull-request@v1 - with: - message: | - Thanks a lot for your contribution! But, Unit tests failed. You can check the unit tests with the command 'npm run test:headless' and commit the changes. + #- name: Add Unit Test Fail Comment + # if: always() && steps.unitTest.outcome == 'failure' + # uses: thollander/actions-comment-pull-request@v1 + # with: + # message: | + # Thanks a lot for your contribution! But, Unit tests failed. You can check the unit tests with the command 'npm run test:headless' and commit the changes. - - name: Add Label - if: ${{ failure() }} - uses: actions-ecosystem/action-add-labels@v1 - with: - labels: 'Resolution: Needs Revision' + - name: Add Label + if: ${{ failure() }} + uses: actions-ecosystem/action-add-labels@v1 + with: + labels: 'Resolution: Needs Revision' - - name: Remove Label - uses: actions-ecosystem/action-remove-labels@v1 - if: ${{ success() }} - with: - labels: 'Resolution: Needs Revision' + - name: Remove Label + uses: actions-ecosystem/action-remove-labels@v1 + if: ${{ success() }} + with: + labels: 'Resolution: Needs Revision'