Skip to content

Move renovate to run after Drupal security release window #27

Move renovate to run after Drupal security release window

Move renovate to run after Drupal security release window #27

name: Deploy to development environment
on:
create:
push:
jobs:
create-environment:
if: github.event.ref_type == 'branch'
uses: libops/actions/.github/workflows/libops.yml@main

Check failure on line 8 in .github/workflows/deploy-development.yml

View workflow run for this annotation

GitHub Actions / Deploy to development environment

Invalid workflow file

The workflow is not valid. .github/workflows/deploy-development.yml (Line: 8, Col: 11): Input action is required, but not provided while calling.
permissions:
contents: read
id-token: write
secrets: inherit
with:
branch: ${{ github.ref_name }}
ci-cd:
if: |
always() &&
github.event.ref_type != 'tag' &&
(needs.create-environment.result == 'success' ||
(needs.create-environment.result == 'skipped' && github.event.created == false))
needs: create-environment
uses: libops/actions/.github/workflows/deploy.yml@main
with:
environment: ${{ github.ref_name }}
permissions:
contents: read
id-token: write
secrets: inherit
push-docker:
if: always() && needs.ci-cd.result == 'success'
needs: [ci-cd]
uses: libops/actions/.github/workflows/build-push-sh.yml@main
with:
environment: ${{ github.ref_name }}
permissions:
contents: read
id-token: write
secrets: inherit
sync-new-environment:
needs: [create-environment, ci-cd]
uses: libops/actions/.github/workflows/sync-db.yml@main
permissions:
contents: read
id-token: write
with:
source: "development"
target: ${{ github.ref_name }}
secrets: inherit