Merge pull request #126 from alexandregv/fix-typo #146
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
on: | |
pull_request: | |
branches: [master] | |
push: | |
branches: [master] | |
permissions: | |
# Goaction needs permissions to update pull requests comments and update content. | |
pull-requests: write | |
contents: write | |
jobs: | |
goaction: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out repository | |
uses: actions/checkout@v2 | |
- name: Update action files | |
uses: posener/goaction@v1 | |
with: | |
path: cmd/goreadme | |
name: goreadme | |
desc: Updates readme from Go doc | |
GITHUB_TOKEN: '${{ secrets.GITHUB_TOKEN }}' | |
image: 'golang:1.19.1-alpine3.16' | |
icon: book-open | |
color: blue |