Skip to content

Setup-Bend@Daily Checking #39

Setup-Bend@Daily Checking

Setup-Bend@Daily Checking #39

Workflow file for this run

# Description:
# - Setup Bend with GitHub Actions
# REF:
# - https://github.com/marketplace/actions/checkout
name: Setup-Bend@Daily Checking
on:
push:
branches:
- main
- develop
# This schedule will run only from the default branch
schedule:
- cron: '15 0 * * *' # run at 00:15 AM UTC
jobs:
setup-bend:
strategy:
fail-fast: false
matrix:
os: [windows-latest, ubuntu-latest, macos-latest]
runs-on: ${{ matrix.os }}
name: Setup Bend@${{ matrix.os }}
steps:
- name: Checkout
uses: actions/[email protected]
- name: Setup Bend
uses: hustcer/setup-bend@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: Check Bend Version
run: |
bend --version
- name: Create an Issue for Release Failure
if: ${{ failure() }}
uses: JasonEtco/[email protected]
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
update_existing: true
search_existing: open
filename: .github/AUTO_ISSUE_TEMPLATE/daily-checking-fail.md