Merge pull request #149 from devops-infra/dependabot/pip/slack-sdk-3.… #123
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: Push to master | |
| on: | |
| push: | |
| branches: | |
| - master | |
| jobs: | |
| labels: | |
| name: Update repo labels | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v4 | |
| - name: Download labels' config | |
| shell: bash | |
| run: | | |
| mkdir -p .tmp | |
| curl -LsS https://raw.githubusercontent.com/devops-infra/.github/master/.github/labels.yml -o .tmp/labels.yml | |
| - name: Update labels | |
| uses: crazy-max/ghaction-github-labeler@v5.2.0 | |
| with: | |
| github-token: ${{ secrets.GITHUB_TOKEN }} | |
| yaml-file: .tmp/labels.yml | |
| lint: | |
| name: Run linters | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v4 | |
| - name: Docker Lint | |
| uses: luke142367/Docker-Lint-Action@v1.1.1 | |
| env: | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
| - name: Haskell Dockerfile Linter (Hadolint) | |
| uses: brpaz/hadolint-action@v1.5.0 | |
| with: | |
| dockerfile: Dockerfile | |
| build_and_push: | |
| name: Build and push images | |
| needs: lint | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v4 | |
| - name: Build Docker image and push to registry | |
| env: | |
| DOCKER_TOKEN: ${{ secrets.DOCKER_TOKEN }} | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
| TERM: xterm-256color | |
| run: make build push |