Skip to content

Update dependency renovate to v35.144.2 #1841

Update dependency renovate to v35.144.2

Update dependency renovate to v35.144.2 #1841

Workflow file for this run

---
name: update-readme
on:
pull_request:
types:
- opened
- synchronize
- reopened
- closed
push:
branches:
- main
jobs:
update-readme:
runs-on: ubuntu-latest
permissions:
contents: write
pull-requests: write
steps:
- uses: actions/checkout@v3.5.3
if: github.event_name != 'pull_request' || github.event.action != 'closed'
with:
fetch-depth: 0
ref: ${{ github.event.pull_request.head.sha || github.sha }}
- uses: actions/setup-node@v3.6.0
if: github.event_name != 'pull_request' || github.event.action != 'closed'
with:
cache: npm
- if: github.event_name != 'pull_request' || github.event.action != 'closed'
run: npm ci
- name: Get inputs markdown
id: get_inputs_markdown
if: github.event_name != 'pull_request' || github.event.action != 'closed'
uses: actions/github-script@v6.4.1
env:
HEAD_REF: ${{github.event.pull_request.head.ref || github.head_ref}}
with:
github-token: ${{secrets.GITHUB_TOKEN}}
result-encoding: string
script: |
const script = require('./scripts/update_readme/update_readme/get_inputs_markdown.js')
return script()
- if: github.event_name != 'pull_request' || github.event.action != 'closed'
env:
INPUTS: ${{steps.get_inputs_markdown.outputs.result}}
run: bash "${GITHUB_WORKSPACE}/scripts/update_readme/update_readme/update_readme.sh"
- uses: dev-hato/actions-diff-pr-management@v1.1.6
with:
github-token: ${{secrets.GITHUB_TOKEN}}
branch-name-prefix: fix-readme
pr-title-prefix: README修正
pr-description-prefix: READMEを修正しました。
concurrency:
group: ${{ github.workflow }}-${{ github.event_name }}-${{ github.ref }}
cancel-in-progress: true