Skip to content

Update job_recruitment_response_generator.md #194

Update job_recruitment_response_generator.md

Update job_recruitment_response_generator.md #194

name: Update Contents
on:
push:
paths:
- 'tools/**'
workflow_dispatch:
permissions:
contents: write
jobs:
update-contents:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Update Contents
run: |
bash .github/workflows/update-contents.sh
- name: Commit changes
run: |
git config --global user.email "github-actions[bot]@users.noreply.github.com"
git config --global user.name "github-actions[bot]"
git add README.md
git diff --cached --quiet || git commit -m "Update Contents"
git push