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 250884c commit fc59f0dCopy full SHA for fc59f0d
.github/workflows/cache_retain.yml
@@ -30,6 +30,10 @@ jobs:
30
retain-maven-cache:
31
name: Run all tests with Maven
32
runs-on: ubuntu-latest
33
+ # Only run this on the upstream repo. Otherwise, running in a person fork will cause
34
+ # Github to disable the personal fork copy of the workflow
35
+ # (Github complains about running a scheduled workflow on a repo with > 60 days of inactivity)
36
+ if: github.ref == 'refs/heads/main' && github.repository == 'unicode-org/unicodetools'
37
steps:
38
- name: Checkout and setup
39
uses: actions/checkout@v2
0 commit comments