forked from caliwyr/Software
-
Notifications
You must be signed in to change notification settings - Fork 0
35 lines (27 loc) · 829 Bytes
/
task.yml
File metadata and controls
35 lines (27 loc) · 829 Bytes
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
# This is a basic workflow to help you get started with Actions
name: Never Be Late
on:
schedule:
- cron: "0 * * * *"
push:
branches:
- main
jobs:
executeMe:
runs-on: ubuntu-latest
steps:
- uses: linhbn123/rebase-pull-requests@v1.0.1
# Git Clone the repro to the container
- uses: actions/checkout@v2
- name: Cleaning files - README.md
run: rm -r ./user-agents.json
# Now execute the deno script
- name: Use Deno Version
uses: denolib/setup-deno@v2
- name: Executing "Update project readme"
run: deno run -A --unstable --no-check ./get.ts
# Push the new repro
- uses: mikeal/publish-to-github-action@master
env:
GITHUB_TOKEN: ${{ secrets.GH_TOKEN }}
BRANCH_NAME: 'main'