Skip to content

Commit

Permalink
Merge pull request #3081 from cisagov/ms/remove-monitor-from-deploy
Browse files Browse the repository at this point in the history
HOTFIX: remove monitor from deploy jobs
  • Loading branch information
Matt-Spence authored Nov 14, 2024
2 parents 13d61fa + ab0617a commit a76e783
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 11 deletions.
6 changes: 2 additions & 4 deletions .github/workflows/deploy-development.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,7 @@ on:
jobs:
deploy-development:
runs-on: ubuntu-latest
steps:
- uses: GitHubSecurityLab/actions-permissions/monitor@v1

steps:
- uses: actions/checkout@v3

- name: Compile USWDS assets
Expand Down Expand Up @@ -48,4 +46,4 @@ jobs:
cf_password: ${{ secrets.CF_DEVELOPMENT_PASSWORD }}
cf_org: cisa-dotgov
cf_space: development
cf_command: "run-task getgov-development --command 'python manage.py migrate' --name migrate"
cf_command: "run-task getgov-development --command 'python manage.py migrate' --name migrate"
1 change: 0 additions & 1 deletion .github/workflows/deploy-manual.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,6 @@ jobs:
deploy:
runs-on: ubuntu-latest
steps:
- uses: GitHubSecurityLab/actions-permissions/monitor@v1
- uses: actions/checkout@v3
- name: Compile USWDS assets
working-directory: ./src
Expand Down
3 changes: 1 addition & 2 deletions .github/workflows/deploy-sandbox.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,6 @@ jobs:
runs-on: ubuntu-latest
needs: [variables]
steps:
- uses: GitHubSecurityLab/actions-permissions/monitor@v1
- uses: actions/checkout@v3
- name: Compile USWDS assets
working-directory: ./src
Expand Down Expand Up @@ -85,4 +84,4 @@ jobs:
owner: context.repo.owner,
repo: context.repo.repo,
body: '🥳 Successfully deployed to developer sandbox **[${{ env.ENVIRONMENT }}](https://getgov-${{ env.ENVIRONMENT }}.app.cloud.gov/)**.'
})
})
3 changes: 1 addition & 2 deletions .github/workflows/deploy-stable.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,6 @@ jobs:
if: ${{ github.ref_type == 'tag' }}
runs-on: ubuntu-latest
steps:
- uses: GitHubSecurityLab/actions-permissions/monitor@v1
- uses: actions/checkout@v3

- name: Compile USWDS assets
Expand All @@ -45,4 +44,4 @@ jobs:
cf_password: ${{ secrets.CF_STABLE_PASSWORD }}
cf_org: cisa-dotgov
cf_space: stable
cf_command: "run-task getgov-stable --command 'python manage.py migrate' --name migrate"
cf_command: "run-task getgov-stable --command 'python manage.py migrate' --name migrate"
3 changes: 1 addition & 2 deletions .github/workflows/deploy-staging.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,6 @@ jobs:
if: ${{ github.ref_type == 'tag' }}
runs-on: ubuntu-latest
steps:
- uses: GitHubSecurityLab/actions-permissions/monitor@v1
- uses: actions/checkout@v3

- name: Compile USWDS assets
Expand All @@ -45,4 +44,4 @@ jobs:
cf_password: ${{ secrets.CF_STAGING_PASSWORD }}
cf_org: cisa-dotgov
cf_space: staging
cf_command: "run-task getgov-staging --command 'python manage.py migrate' --name migrate"
cf_command: "run-task getgov-staging --command 'python manage.py migrate' --name migrate"

0 comments on commit a76e783

Please sign in to comment.