We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c266a8d commit 5af4103Copy full SHA for 5af4103
.github/workflows/nightlies.yml
@@ -8,17 +8,18 @@ on:
8
jobs:
9
cut_nightly:
10
runs-on: ubuntu-latest
11
+ environment: trigger-nightly
12
timeout-minutes: 60
13
steps:
- - uses: actions/checkout@v2
14
+ - uses: actions/checkout@v3
15
with:
16
ref: main
- persist-credentials: false
17
+ token: ${{ secrets.GH_PYTORCHBOT_TOKEN }}
18
- name: Create nightly commit
19
shell: bash
20
run: |
- git config --global user.email "torch-tensorrt.github.bot@nvidia.com"
21
- git config --global user.name "Torch-TensorRT Github Bot"
+ git config --global user.email "pytorchbot@pytorch.com"
22
+ git config --global user.name "pytorchbot"
23
git fetch origin nightly
24
HEAD_COMMIT_HASH=$(git rev-parse HEAD)
25
NIGHTLY_DATE=$(date +"%Y-%m-%d")
0 commit comments