📝 docs : Update symmetric-key contents in SSL-TLS.md #22
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: "update readme" | |
on: | |
push: | |
branches: | |
- main | |
paths-ignore: | |
- README.md | |
jobs: | |
update-readme: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
- name: Update README | |
id: TIL | |
uses: yongjulejule/TIL-github-action@v1 | |
env: | |
TIL_HEADER: ${{ vars.TIL_HEADER }} | |
- name: Commit changes | |
run: | | |
git config --local user.email "[email protected]" | |
git config --local user.name "GitHub Action" | |
git add README.md | |
git commit -m "Update README.md" | |
- name: Create Pull Request | |
id: cpr | |
uses: peter-evans/create-pull-request@v4 | |
with: | |
token: ${{ secrets.PAT }} | |
commit-message: Update report | |
committer: GitHub <[email protected]> | |
author: GitHub Action <[email protected]> | |
signoff: false | |
branch: readme-bot | |
delete-branch: true | |
title: "[bot] Update README.md" | |
body: | | |
Update README.md. Please review the changes. | |
assignees: ${{ github.actor }} | |
reviewers: ${{ github.actor }} | |
draft: false |