feat: use multiple columns for languages and other tags in README tem… #7833
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
| name: Render | |
| on: | |
| push: | |
| branches: [master] | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| permissions: | |
| # Give the default GITHUB_TOKEN write permission to commit and push the | |
| # added or changed files to the repository. | |
| contents: write | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Install Rust toolchain | |
| uses: dtolnay/rust-toolchain@stable | |
| - name: Render list | |
| run: make render | |
| env: | |
| GITHUB_TOKEN: ${{ github.token }} | |
| - uses: stefanzweifel/git-auto-commit-action@v4.1.2 | |
| with: | |
| commit_message: Commit list | |
| commit_user_name: Analysis Tools Bot | |
| commit_user_email: bot@analysis-tools.dev | |
| commit_author: Analysis Tools Bot <bot@analysis-tools.dev> | |
| - name: Redeploy website | |
| uses: peter-evans/repository-dispatch@v3 | |
| with: | |
| token: ${{ secrets.REPO_ACCESS_TOKEN }} | |
| repository: analysis-tools-dev/website-next | |
| event-type: rebuild |