Skip to content

chore(deps): update github-actions - autoclosed #21

chore(deps): update github-actions - autoclosed

chore(deps): update github-actions - autoclosed #21

Workflow file for this run

name: Deploybot
on:
workflow_dispatch:
pull_request:
paths:
- deploybot/**
- .github/workflows/deploybot.yaml
jobs:
e2e:
runs-on: ubuntu-latest
environment: e2e
steps:
- uses: actions/checkout@c85c95e3d7251135ab7dc9ce3241c5835cc595a9 # v3.5.3
- uses: actions/setup-node@bea5baf987ba7aa777a8a0b4ace377a21c45c381 # v3.8.0
with:
node-version-file: package.json
cache: yarn
- run: |
yarn install --frozen-lockfile
yarn workspace deploybot all
- name: The job has started
uses: ./deploybot
with:
status: started
token: ${{ secrets.SLACK_OAUTH_TOKEN }}
channel: ${{ secrets.SLACK_CHANNEL }}
- name: Generate image tags
id: tags
uses: ./docker-image-tag
with:
env: dev
suffix_type: auto
- name: The job has succeeded
uses: ./deploybot
with:
status: success
token: ${{ secrets.SLACK_OAUTH_TOKEN }}
channel: ${{ secrets.SLACK_CHANNEL }}
custom_fields: |
- title: ECR Repository
value: "```dummy```"
- title: Image Tags
value: "```${{ steps.tags.outputs.image_tag }}\n${{ steps.tags.outputs.latest_tag }}```"
- name: The job has failed
uses: ./deploybot
with:
status: failure
token: ${{ secrets.SLACK_OAUTH_TOKEN }}
channel: ${{ secrets.SLACK_CHANNEL }}
custom_fields: |
- title: ECR Repository
value: "```dummy```"
- title: Image Tags
value: "```${{ steps.tags.outputs.image_tag }}\n${{ steps.tags.outputs.latest_tag }}```"
- name: The job has been cancelled
uses: ./deploybot
with:
status: cancelled
token: ${{ secrets.SLACK_OAUTH_TOKEN }}
channel: ${{ secrets.SLACK_CHANNEL }}