Skip to content

:dependabot: github-actions(deps): Bump slackapi/slack-github-action from 1.26.0 to 1.27.0 #2618

:dependabot: github-actions(deps): Bump slackapi/slack-github-action from 1.26.0 to 1.27.0

:dependabot: github-actions(deps): Bump slackapi/slack-github-action from 1.26.0 to 1.27.0 #2618

---
name: Dependabot Configuration Generator
on: # yamllint disable-line rule:truthy
pull_request:
branches:
- main
permissions: read-all
jobs:
dependabot-configuration-generator:
name: Dependabot Configuration Generator
runs-on: ubuntu-latest
permissions:
contents: write
steps:
- name: Checkout
id: checkout
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
- name: Run Dependabot Configuration Generator
id: run_dependabot_configuration_generator
run: |
bash scripts/dependabot/configuration-generator.sh
- name: Detect Changes in .github/dependabot.yml
id: detect_changes
run: |
git diff --quiet --exit-code .github/dependabot.yml
continue-on-error: true
- name: DEBUG
id: debug
run: |
git diff .github/dependabot.yml
echo "detect_changes_output ${{ steps.detect_changes.outcome }}"
- name: Commit Changes
id: commit_changes
uses: planetscale/ghcommit-action@c7915d6c18d5ce4eb42b0eff3f10a29fe0766e4c # v0.1.44
with:
commit_message: "🤖 Update .github/dependabot.yml"
file_pattern: ".github/dependabot.yml"
repo: ${{ github.repository }}
branch: ${{ github.head_ref || github.ref_name }}
env:
GITHUB_TOKEN: ${{ secrets.DATA_PLATFORM_ROBOT_TOKEN }}