Add release workflow and document release process (#44) #118
This file contains hidden or 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
| # NOTE: This action requires write permissions to be set in your GitHub | |
| # repo/fork for it to be able to commit changes. | |
| # | |
| # This is currently enabled via: | |
| # | |
| # settings > Actions > General > Workflow permissions | |
| # | |
| # which you will need to set to "Read and write permissions" | |
| # | |
| name: clang-format Commit Changes | |
| on: | |
| workflow_dispatch: | |
| push: | |
| permissions: | |
| contents: read | |
| jobs: | |
| formatting-check: | |
| name: Commit Format Changes | |
| runs-on: ubuntu-latest | |
| if: "!contains(github.event.head_commit.message, 'skip-ci')" | |
| permissions: | |
| contents: write # In order to allow EndBug/add-and-commit to commit changes | |
| steps: | |
| - uses: actions/checkout@v4.1.7 | |
| - name: Run clang-format style check for C programs. | |
| uses: DoozyX/clang-format-lint-action@v0.18.2 | |
| with: | |
| source: '.' | |
| extensions: 'c,h,cpp,hpp' | |
| clangFormatVersion: 10 | |
| inplace: True | |
| style: file | |
| # exclude: './config ' | |
| - uses: EndBug/add-and-commit@v9.1.3 | |
| with: | |
| author_name: github-actions | |
| author_email: github-actions[bot]@users.noreply.github.com | |
| message: 'Committing clang-format changes' |