-
Notifications
You must be signed in to change notification settings - Fork 0
36 lines (29 loc) · 1.03 KB
/
scheduled-digest.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
name: Scheduled Digest
on:
workflow_dispatch:
schedule:
- cron: '0 0 * * *'
jobs:
scheduled-digest:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Get Composer Cache Directory
id: composer-cache
run: |
echo "dir=$(composer config cache-files-dir)" >> $GITHUB_OUTPUT
- uses: actions/cache@v3
with:
path: ${{ steps.composer-cache.outputs.dir }}
key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.lock') }}
restore-keys: |
${{ runner.os }}-composer-
- run: composer install --no-progress --no-dev
- run: ./subscriptions-digest run --github --email
env:
GITHUB_REPOSITORY: ${{ github.repository }}
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
CONFIG_FILE: ${{ secrets.CONFIG_FILE }}
MAILER_DSN: ${{ secrets.MAILER_DSN }}
MAILER_SENDER: ${{ secrets.MAILER_SENDER }}
MAILER_RECIPIENTS: ${{ secrets.MAILER_RECIPIENTS }}