-
-
Notifications
You must be signed in to change notification settings - Fork 4
66 lines (64 loc) · 2.16 KB
/
make-branch-runnable.yaml
File metadata and controls
66 lines (64 loc) · 2.16 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
# This file was generated using Kotlin DSL (.github/workflows/release.main.kts).
# If you want to modify the workflow, please change the Kotlin file and regenerate this YAML file.
# Generated with https://github.com/typesafegithub/github-workflows-kt
name: 'Make branch runnable'
on:
workflow_dispatch: {}
jobs:
check_yaml_consistency:
name: 'Check YAML consistency'
runs-on: 'ubuntu-latest'
steps:
- id: 'step-0'
name: 'Check out'
uses: 'actions/checkout@v6'
- id: 'step-1'
name: 'Execute script'
run: 'rm ''.github/workflows/make-branch-runnable.yaml'' && ''.github/workflows/release.main.kts'''
- id: 'step-2'
name: 'Consistency check'
run: 'git diff --exit-code ''.github/workflows/make-branch-runnable.yaml'''
make-branch-runnable:
runs-on: 'ubuntu-latest'
needs:
- 'check_yaml_consistency'
steps:
- id: 'step-0'
name: 'Checkout github-actions-typing'
uses: 'actions/checkout@v6'
with:
path: 'github-actions-typing'
- id: 'step-1'
name: 'Checkout github-actions-typing-catalog'
uses: 'actions/checkout@v6'
with:
repository: 'typesafegithub/github-actions-typing-catalog'
path: 'github-actions-typing-catalog'
- id: 'step-2'
uses: 'gradle/actions/setup-gradle@v6'
- id: 'step-3'
working-directory: 'github-actions-typing'
run: './gradlew build'
- id: 'step-4'
name: 'Regenerate the contents of dist directory'
working-directory: 'github-actions-typing'
run: |-
set -euxo pipefail
rm -rf dist
unzip -qq build/distributions/github-actions-typing.zip -d dist
- id: 'step-5'
name: 'Configure git'
working-directory: 'github-actions-typing'
run: |-
git config user.email "41898282+github-actions[bot]@users.noreply.github.com"
git config user.name "github-actions[bot]"
- id: 'step-6'
name: 'Commit changes'
working-directory: 'github-actions-typing'
run: |-
git add .
git commit -m "Update dist"
- id: 'step-7'
name: 'Push commit'
working-directory: 'github-actions-typing'
run: 'git push'