12
0
Fork 0
mirror of https://github.com/actions/cache.git synced 2026-07-03 21:59:30 +00:00

Switched to forked toolkit

This commit is contained in:
Boris Staal 2023-04-09 15:39:49 -05:00
parent 8cf0abb534
commit fed9ab945e
No known key found for this signature in database
70 changed files with 219203 additions and 26887 deletions

2
.github/CODEOWNERS vendored
View file

@ -1,2 +1,2 @@
* @justvanilla
* @inossidabile
* inossidabile

26
.github/workflows/release.yml vendored Normal file
View file

@ -0,0 +1,26 @@
name: Release new action version
on:
release:
types: [released]
workflow_dispatch:
inputs:
tag_name:
description: 'Tag name that the major tag will point to'
required: true
env:
tag_name: ${{ github.event.inputs.tag_name || github.event.release.tag_name }}
jobs:
update_tag:
name: Release the new action
runs-on: ubuntu-latest
permissions:
contents: write
steps:
- uses: actions/checkout@v3
- name: Update the ${{ env.tag_name }} tag
uses: actions/publish-action@v0.2.2
with:
source-tag: ${{ env.tag_name }}

21
.github/workflows/sync-fork.yml vendored Normal file
View file

@ -0,0 +1,21 @@
name: Sync Upstream
on:
schedule:
- cron: '*/30 * * * *'
workflow_dispatch:
permissions: write-all
jobs:
sync:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
token: ${{ secrets.GITHUB_TOKEN }}
- uses: fopina/upstream-to-pr@v1
with:
token: ${{ secrets.GITHUB_TOKEN }}
upstream-repository: https://github.com/actions/cache.git