chore(deps): Bump serde from 1.0.214 to 1.0.215 #780
Workflow file for this run
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: Commisery | |
on: | |
workflow_call: | |
pull_request: | |
types: [edited, opened, synchronize, reopened] | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
# This workflow uses a third-party action. | |
# The existence of a `permissions` key denies all | |
# permissions except those explicitly specified. | |
permissions: | |
contents: read | |
pull-requests: write | |
issues: write | |
jobs: | |
commit-message: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Harden Runner | |
uses: step-security/harden-runner@91182cccc01eb5e619899d80e4e971d6181294a7 # v2.10.1 | |
with: | |
disable-sudo: true | |
egress-policy: block | |
allowed-endpoints: > | |
api.github.com:443 | |
- name: Run Commisery | |
uses: tomtom-international/commisery-action@98ff47b1e06d88495f253b5b16d149f856abb953 # v3.4.0 | |
with: | |
token: ${{ secrets.GITHUB_TOKEN }} | |
validate-pull-request: false | |
validate-pull-request-title-bump: false |