mirror of
https://github.com/zebrajr/tensorflow.git
synced 2025-12-06 12:20:11 +01:00
Merge pull request #61847 from joycebrum:master
PiperOrigin-RevId: 568281582
This commit is contained in:
commit
4a3fd4ccb9
3
.github/workflows/arm-cd.yml
vendored
3
.github/workflows/arm-cd.yml
vendored
|
|
@ -24,6 +24,9 @@ on:
|
|||
schedule:
|
||||
- cron: '0 8 * * *'
|
||||
|
||||
permissions:
|
||||
contents: read
|
||||
|
||||
jobs:
|
||||
build:
|
||||
if: github.repository == 'tensorflow/tensorflow' # Don't do this in forks
|
||||
|
|
|
|||
3
.github/workflows/arm-ci-extended-cpp.yml
vendored
3
.github/workflows/arm-ci-extended-cpp.yml
vendored
|
|
@ -22,6 +22,9 @@ on:
|
|||
schedule:
|
||||
- cron: '0 2 * * *'
|
||||
|
||||
permissions:
|
||||
contents: read
|
||||
|
||||
jobs:
|
||||
build:
|
||||
if: github.repository == 'tensorflow/tensorflow' # Don't do this in forks
|
||||
|
|
|
|||
3
.github/workflows/arm-ci-extended.yml
vendored
3
.github/workflows/arm-ci-extended.yml
vendored
|
|
@ -22,6 +22,9 @@ on:
|
|||
schedule:
|
||||
- cron: '0 4 * * *'
|
||||
|
||||
permissions:
|
||||
contents: read
|
||||
|
||||
jobs:
|
||||
build:
|
||||
if: github.repository == 'tensorflow/tensorflow' # Don't do this in forks
|
||||
|
|
|
|||
3
.github/workflows/arm-ci.yml
vendored
3
.github/workflows/arm-ci.yml
vendored
|
|
@ -26,6 +26,9 @@ on:
|
|||
- master
|
||||
- r2.**
|
||||
|
||||
permissions:
|
||||
contents: read
|
||||
|
||||
jobs:
|
||||
build:
|
||||
# Don't do this in forks, and if labeled, only for 'kokoro:force-run'
|
||||
|
|
|
|||
3
.github/workflows/cffconvert.yml
vendored
3
.github/workflows/cffconvert.yml
vendored
|
|
@ -20,6 +20,9 @@ on:
|
|||
paths:
|
||||
- CITATION.cff
|
||||
|
||||
permissions:
|
||||
contents: read
|
||||
|
||||
jobs:
|
||||
validate:
|
||||
if: github.repository == 'tensorflow/tensorflow' # Don't do this in forks
|
||||
|
|
|
|||
6
.github/workflows/issue-on-pr-rollback.yml
vendored
6
.github/workflows/issue-on-pr-rollback.yml
vendored
|
|
@ -18,10 +18,16 @@ on:
|
|||
push:
|
||||
branches:
|
||||
- master
|
||||
|
||||
permissions: {}
|
||||
|
||||
jobs:
|
||||
create-issue-on-pr-rollback:
|
||||
runs-on: ubuntu-latest
|
||||
permissions:
|
||||
contents: read
|
||||
issues: write
|
||||
pull-requests: read
|
||||
if: |
|
||||
github.repository == 'tensorflow/tensorflow' &&
|
||||
startsWith(github.event.head_commit.message, 'Rollback of PR #')
|
||||
|
|
|
|||
3
.github/workflows/pylint-presubmit.yml
vendored
3
.github/workflows/pylint-presubmit.yml
vendored
|
|
@ -19,6 +19,9 @@ on:
|
|||
paths:
|
||||
- '**.py'
|
||||
|
||||
permissions:
|
||||
contents: read
|
||||
|
||||
jobs:
|
||||
build:
|
||||
name: PyLint
|
||||
|
|
|
|||
|
|
@ -35,6 +35,9 @@ on:
|
|||
required: true
|
||||
type: string
|
||||
|
||||
permissions:
|
||||
contents: read
|
||||
|
||||
jobs:
|
||||
cherrypick:
|
||||
name: Cherrypick to ${{ github.event.inputs.release_branch}} - ${{ github.event.inputs.git_commit }}
|
||||
|
|
|
|||
3
.github/workflows/sigbuild-docker-branch.yml
vendored
3
.github/workflows/sigbuild-docker-branch.yml
vendored
|
|
@ -25,6 +25,9 @@ on:
|
|||
branches:
|
||||
- "r[1-9].[0-9]+"
|
||||
|
||||
permissions:
|
||||
contents: read
|
||||
|
||||
jobs:
|
||||
docker:
|
||||
if: github.repository == 'tensorflow/tensorflow' # Don't do this in forks
|
||||
|
|
|
|||
|
|
@ -23,6 +23,9 @@ on:
|
|||
- 'tensorflow/tools/tf_sig_build_dockerfiles/**'
|
||||
- '!tensorflow/tools/tf_sig_build_dockerfiles/README.md'
|
||||
|
||||
permissions:
|
||||
contents: read
|
||||
|
||||
jobs:
|
||||
docker:
|
||||
if: github.repository == 'tensorflow/tensorflow' # Don't do this in forks
|
||||
|
|
@ -30,6 +33,9 @@ jobs:
|
|||
strategy:
|
||||
matrix:
|
||||
python-version: [python3.9, python3.10, python3.11]
|
||||
permissions:
|
||||
contents: read
|
||||
pull-requests: write
|
||||
steps:
|
||||
- name: Delete unnecessary tools folder
|
||||
run: |
|
||||
|
|
|
|||
3
.github/workflows/sigbuild-docker.yml
vendored
3
.github/workflows/sigbuild-docker.yml
vendored
|
|
@ -28,6 +28,9 @@ on:
|
|||
branches:
|
||||
- master
|
||||
|
||||
permissions:
|
||||
contents: read
|
||||
|
||||
jobs:
|
||||
docker:
|
||||
if: github.repository == 'tensorflow/tensorflow' # Don't do this in forks
|
||||
|
|
|
|||
3
.github/workflows/stale-issues.yml
vendored
3
.github/workflows/stale-issues.yml
vendored
|
|
@ -18,6 +18,9 @@ on:
|
|||
schedule:
|
||||
- cron: "30 1 * * *"
|
||||
|
||||
permissions:
|
||||
contents: read
|
||||
|
||||
jobs:
|
||||
close-issues:
|
||||
# Don't do this in forks
|
||||
|
|
|
|||
3
.github/workflows/trusted-partners.yml
vendored
3
.github/workflows/trusted-partners.yml
vendored
|
|
@ -17,6 +17,9 @@ name: Trusted Partner PR
|
|||
on:
|
||||
pull_request_target:
|
||||
|
||||
permissions:
|
||||
contents: read
|
||||
|
||||
jobs:
|
||||
assign-partner-tags:
|
||||
runs-on: ubuntu-latest
|
||||
|
|
|
|||
5
.github/workflows/update-nightly.yml
vendored
5
.github/workflows/update-nightly.yml
vendored
|
|
@ -18,10 +18,15 @@ on:
|
|||
schedule:
|
||||
- cron: 0 4 * * * # 4am UTC is 9pm PDT and 8pm PST
|
||||
name: Set nightly branch to master HEAD
|
||||
|
||||
permissions: {}
|
||||
|
||||
jobs:
|
||||
master-to-nightly:
|
||||
if: github.repository == 'tensorflow/tensorflow' # Don't do this in forks
|
||||
runs-on: ubuntu-latest
|
||||
permissions:
|
||||
contents: write
|
||||
steps:
|
||||
- uses: zofrex/mirror-branch@a8809f0b42f9dfe9b2c5c2162a46327c23d15266 # v1.0.3
|
||||
name: Set nightly branch to master HEAD
|
||||
|
|
|
|||
3
.github/workflows/update-rbe.yml
vendored
3
.github/workflows/update-rbe.yml
vendored
|
|
@ -20,6 +20,9 @@ name: Update RBE Configs
|
|||
on:
|
||||
workflow_dispatch:
|
||||
|
||||
permissions:
|
||||
contents: read
|
||||
|
||||
jobs:
|
||||
rbe:
|
||||
name: Update RBE Configs
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user