File: mirror.yml

package info (click to toggle)
amd-debug-tools 0.2.13-2
  • links: PTS
  • area: main
  • in suites: forky, sid
  • size: 756 kB
  • sloc: python: 11,042; makefile: 30
file content (24 lines) | stat: -rw-r--r-- 505 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
name: 'mirror'
on:
  push:
    branches:
        - __mirror
  schedule:
    # Run everyday at 3 AM UTC
    - cron: '0 3 * * *'
  workflow_dispatch:

permissions:
  contents: write

jobs:
  mirror:
    runs-on: ubuntu-latest
    name: mirror
    steps:
      - name: mirror
        id: mirror
        uses: bridgelightcloud/github-mirror-action@v3
        with:
          origin: git://git.kernel.org/pub/scm/linux/kernel/git/superm1/amd-debug-tools.git
          GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}