-
Notifications
You must be signed in to change notification settings - Fork 0
46 lines (40 loc) · 1.1 KB
/
daily.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
# 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/checkout@v4
- name: Setup Bend
uses: hustcer/setup-bend@main
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: Check Bend Version
run: |
bend --version
- name: Create an Issue for Release Failure
if: ${{ failure() }}
uses: JasonEtco/create-an-issue@v2.9.2
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
update_existing: true
search_existing: open
filename: .github/AUTO_ISSUE_TEMPLATE/daily-checking-fail.md