-
Notifications
You must be signed in to change notification settings - Fork 0
48 lines (43 loc) · 1.31 KB
/
cleanup.yml
File metadata and controls
48 lines (43 loc) · 1.31 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
# GitHub Actions Workflow responsible for cleaning up the template repository from
# the template-specific files and configurations. This workflow is supposed to be triggered automatically
# when a new template-based repository has been created.
name: Template Cleanup
on:
push:
branches:
- main
permissions:
contents: write
jobs:
template-cleanup:
name: Template Cleanup
runs-on: ubuntu-latest
if: github.event.repository.name != 'compose-android-template'
steps:
# Check out current repository
- name: Fetch Sources
uses: actions/checkout@v5
# Setup Java
- uses: actions/setup-java@v5
with:
distribution: 'zulu'
java-version: '17'
# Setup Gradle
- name: Setup Gradle
uses: gradle/actions/setup-gradle@v4
# Cleanup project
- name: Cleanup
run: ./gradlew templateCleanup
# Commit modified files
- name: Commit files
run: |
git config --local user.email "action@github.com"
git config --local user.name "GitHub Action"
git add .
git commit -m "Template cleanup"
# Push changes
- name: Push changes
uses: ad-m/github-push-action@master
with:
branch: main
github_token: ${{ secrets.GITHUB_TOKEN }}