Skip to content

Update Dependabot configuration to include labels on the GitHub Actions #94

Update Dependabot configuration to include labels on the GitHub Actions

Update Dependabot configuration to include labels on the GitHub Actions #94

Workflow file for this run

name: CI
on:
push:
branches:
- master
pull_request:
branches:
- master
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-java@v4
with:
java-version: 11
distribution: "temurin"
- uses: coursier/cache-action@v6
- id: test
name: Test
env:
GITHUB_TOKEN: "${{ secrets.GITHUB_TOKEN }}"
run: sbt test
- name: Send slack notification
uses: act10ns/slack@v2
env:
SLACK_WEBHOOK_URL: ${{ secrets.SLACK_WEBHOOK_URL }}
with:
status: ${{ job.status }}
steps: ${{ toJson(steps) }}
if: failure() && env.SLACK_WEBHOOK_URL