diff --git a/.github/dependabot.yaml b/.github/dependabot.yaml new file mode 100644 index 00000000..0fec9e12 --- /dev/null +++ b/.github/dependabot.yaml @@ -0,0 +1,22 @@ +version: 2 +updates: + # Maintain dependencies for GitHub Actions + - package-ecosystem: 'github-actions' + directory: '/' + schedule: + interval: 'weekly' + day: 'sunday' + + # Maintain dependencies for npm + - package-ecosystem: 'npm' + directory: '/' + schedule: + interval: 'weekly' + day: 'sunday' + + # Configuration for Dockerfile + - package-ecosystem: 'docker' + directory: 'apps/' + schedule: + interval: 'weekly' + day: 'sunday' diff --git a/.github/workflows/deploy-staging.yaml b/.github/workflows/deploy-staging.yaml index 8bd298b2..759124aa 100644 --- a/.github/workflows/deploy-staging.yaml +++ b/.github/workflows/deploy-staging.yaml @@ -1,10 +1,10 @@ name: Deploy to staging on: - pull_request: - types: [ready_for_review, opened, reopened, synchronize] + push: branches: - - main + - develop + workflow_dispatch: jobs: test: