Skip to content

CI for PR: #82 chore(deps): update all non-major dependencies #162

CI for PR: #82 chore(deps): update all non-major dependencies

CI for PR: #82 chore(deps): update all non-major dependencies #162

Workflow file for this run

name: CI
run-name: 'CI for PR: #${{github.event.pull_request.number}} ${{ github.event.pull_request.title }}'
on:
pull_request:
types:
- opened
- reopened
- synchronize
concurrency:
group: ci-${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
GH_EMAIL: '41898282+github-actions[bot]@users.noreply.github.com'
GH_USER: 'github-actions[bot]'
jobs:
lint-pr:
name: Validate PR title
runs-on: ubuntu-latest
permissions:
pull-requests: write
steps:
- uses: amannn/action-semantic-pull-request@v5
id: lint_pr_title
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- uses: marocchino/sticky-pull-request-comment@v2
# When the previous steps fails, the workflow would stop. By adding this
# condition you can continue the execution with the populated error message.
if: always() && (steps.lint_pr_title.outputs.error_message != null)
with:
header: pr-title-lint-error
message: |
Hey there and thank you for opening this pull request! 👋🏼
We require pull request titles to follow the [Conventional Commits specification](https://www.conventionalcommits.org/en/v1.0.0/) and it looks like your proposed title needs to be adjusted.
Details:
```
${{ steps.lint_pr_title.outputs.error_message }}
```
# Delete a previous comment when the issue has been resolved
- if: ${{ steps.lint_pr_title.outputs.error_message == null }}
uses: marocchino/sticky-pull-request-comment@v2
with:
header: pr-title-lint-error
delete: true
pre-check:
runs-on: ubuntu-latest
outputs:
is-skip-check: ${{ steps.pre-check.outputs.is-skip }}
is-skip-test: ${{ steps.pre-check.outputs.is-skip-test }}
steps:
- id: pre-check
uses: mato533/cicd-actions/pre-check@main
with:
target-sha: ${{ github.event.pull_request.head.sha }}
check:
runs-on: ubuntu-latest
outputs:
is-updated: ${{ steps.check.outputs.is-updated }}
needs:
- pre-check
- lint-pr
if: ${{ needs.pre-check.outputs.is-skip-check == 0 }}
steps:
- uses: mato533/cicd-actions/setup-pnpm@main
with:
cache: 'pnpm'
- uses: mato533/cicd-actions/format-source-code@main
id: check
with:
app-id: ${{ vars.APP_ID }}
private-key: ${{ secrets.PRIVATE_KEY }}
branch: ${{ github.head_ref }}
test:
needs:
- pre-check
- check
if: ${{ !cancelled() && !failure() && (needs.pre-check.outputs.is-skip-check > 0 || needs.check.outputs.is-updated == 0) && needs.pre-check.outputs.is-skip-test == 0 }}
name: Run CI
uses: ./.github/workflows/test.yml
result:
runs-on: ubuntu-latest
needs:
- pre-check
- check
- test
if: ${{ !cancelled() && (needs.pre-check.outputs.is-skip-check > 0 || needs.check.outputs.is-updated == 0) }}
steps:
- uses: technote-space/workflow-conclusion-action@v3
- name: Conclusion
env:
WORKFLOW_CONCLUSION: ${{ env.WORKFLOW_CONCLUSION }}
run: |
echo ${WORKFLOW_CONCLUSION}
if [ ${WORKFLOW_CONCLUSION} = "failure" ]; then
exit 1
else
exit 0
fi