Remove remove aws_s3_object airflow_local_settings_dev and aws_s3_object airflow_local_settings_prod #4590
This file contains 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: 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@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 | |
- 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@416d8ba8b8e04c703961e9a61f6b18a902c9428c # v0.2.3 | |
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 }} |