Skip to content

Commit b52c55a

Browse files
Nikola HristovNikola Hristov
authored andcommitted
1 parent acc397d commit b52c55a

File tree

1 file changed

+68
-0
lines changed

1 file changed

+68
-0
lines changed

.github/workflows/Auto.yml

Lines changed: 68 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,68 @@
1+
name: Auto
2+
3+
concurrency:
4+
group: Auto-${{ github.workflow }}-${{ github.ref }}
5+
cancel-in-progress: true
6+
7+
permissions:
8+
contents: write
9+
10+
on:
11+
workflow_dispatch:
12+
schedule:
13+
- cron: "0 0 * * *"
14+
workflow_call:
15+
16+
jobs:
17+
Commit:
18+
runs-on: ubuntu-latest
19+
20+
env:
21+
ADBLOCK: true
22+
ASTRO_TELEMETRY_DISABLED: 1
23+
AUTOMATEDLAB_TELEMETRY_OPTOUT: 1
24+
AZURE_CORE_COLLECT_TELEMETRY: 0
25+
CHOOSENIM_NO_ANALYTICS: 1
26+
DIEZ_DO_NOT_TRACK: 1
27+
DO_NOT_TRACK: 1
28+
DOTNET_CLI_TELEMETRY_OPTOUT: 1
29+
DOTNET_INTERACTIVE_CLI_TELEMETRY_OPTOUT: 1
30+
ET_NO_TELEMETRY: 1
31+
GATSBY_TELEMETRY_DISABLED: 1
32+
GATSBY_TELEMETRY_OPT_OUT: 1
33+
GATSBY_TELEMETRY_OPTOUT: 1
34+
GRIT_TELEMETRY_DISABLED: 1
35+
HASURA_GRAPHQL_ENABLE_TELEMETRY: false
36+
HINT_TELEMETRY: off
37+
HOMEBREW_NO_ANALYTICS: 1
38+
INFLUXD_REPORTING_DISABLED: true
39+
ITERATIVE_DO_NOT_TRACK: 1
40+
NEXT_TELEMETRY_DEBUG: 1
41+
NEXT_TELEMETRY_DISABLED: 1
42+
NG_CLI_ANALYTICS: false
43+
NUXT_TELEMETRY_DISABLED: 1
44+
PIN_DO_NOT_TRACK: 1
45+
POWERSHELL_TELEMETRY_OPTOUT: 1
46+
SAM_CLI_TELEMETRY: 0
47+
STNOUPGRADE: 1
48+
STRIPE_CLI_TELEMETRY_OPTOUT: 1
49+
TELEMETRY_DISABLED: 1
50+
TERRAFORM_TELEMETRY: 0
51+
VCPKG_DISABLE_METRICS: 1
52+
53+
steps:
54+
- uses: actions/[email protected]
55+
56+
- run: |
57+
echo "Update: $(date)" > .github/Update.md
58+
59+
- run: |
60+
git config user.name "Auto"
61+
git config user.email "[email protected]"
62+
git add .
63+
git commit -a --allow-empty-message -m ""
64+
65+
- uses: ad-m/github-push-action@master
66+
with:
67+
github_token: ${{ secrets.GITHUB_TOKEN }}
68+
branch: Current

0 commit comments

Comments
 (0)