Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

PR - Add delay param for the action #831

Merged
merged 3 commits into from
Jun 19, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
61 changes: 30 additions & 31 deletions .github/workflows/pr-lint-pr.yml
Original file line number Diff line number Diff line change
@@ -1,31 +1,30 @@
name: PR - Lint PR

on:
pull_request:
types: [opened, synchronize, reopened]
paths-ignore:
- 'content/**'
- 'public/**'

concurrency:
group: ci-${{ github.event.number }}
cancel-in-progress: true

defaults:
run:
shell: pwsh

jobs:
pr-lint:
runs-on: ubuntu-latest
name: Check linked issues
steps:

- uses: nearform/github-action-check-linked-issues@v1.4.16
id: check-linked-issues
with:
exclude-branches: "dependabot/**"

- name: Generate summary
run: |
echo "Found ${{ steps.check-linked-issues.outputs.linked_issues_count }} issues linked to PR" >> $GITHUB_STEP_SUMMARY
name: PR - Lint PR

on:
pull_request:
types: [opened, synchronize, reopened]
paths-ignore:
- "content/**"
- "public/**"

concurrency:
group: ci-${{ github.event.number }}
cancel-in-progress: true

defaults:
run:
shell: pwsh

jobs:
pr-lint:
runs-on: ubuntu-latest
name: Check linked issues
steps:
- uses: nearform-actions/github-action-check-linked-issues@v1.4.16
id: check-linked-issues
with:
exclude-branches: "dependabot/**"

- name: Generate summary
run: |
echo "Found ${{ steps.check-linked-issues.outputs.linked_issues_count }} issues linked to PR" >> $GITHUB_STEP_SUMMARY
2 changes: 2 additions & 0 deletions .github/workflows/pr-push-deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -84,6 +84,8 @@ jobs:
performance
SEO
strategy: mobile
delayBetweenRetries: 30000
maximumNumberOfRetries: 4
key: ${{ secrets.PAGESPEED_INSIGHTS_API_KEY }}

- name: Comment on PR with insights
Expand Down
Loading