Bump github.com/gin-gonic/gin from 1.9.1 to 1.10.0 in /shortener (#78) #9
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: Technical Writer | |
on: | |
push: | |
branches: | |
- main | |
jobs: | |
tech-docs: | |
name: Technical Docs | |
runs-on: ubuntu-latest | |
permissions: write-all | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Tech Docs | |
uses: dbut2/technical-writer@allow-list | |
with: | |
openai_api_key: ${{ secrets.OPENAI_API_KEY }} | |
allow_list: deployment,shortener | |
deny_list: vendor | |
- name: Refresh git | |
run: | | |
git config --local --get remote.origin.url | |
- name: Create Pull Request | |
uses: peter-evans/create-pull-request@v5 | |
with: | |
token: ${{ secrets.GITHUB_TOKEN }} | |
commit-message: 'update documentation' | |
title: 'Documentation Update' | |
body: 'Documentation Update' | |
branch: 'docs/technical-writer' | |
base: main |