Library and example implementation that extracts code context for any issue #221
Workflow file for this run
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: Format | |
on: | |
pull_request: | |
branches: | |
- main | |
permissions: | |
# Grant the ability to checkout the repository | |
contents: read | |
jobs: | |
build: | |
name: Format | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out code | |
uses: actions/checkout@v2 | |
- name: Format | |
run: ./pleasew fmt-all |