Skip to content

Commit 48ea428

Browse files
committed
converted main.workflow to Actions V2 yml files
1 parent 3c0a3dd commit 48ea428

File tree

3 files changed

+28
-24
lines changed

3 files changed

+28
-24
lines changed

.github/main.workflow

Lines changed: 0 additions & 24 deletions
This file was deleted.

.github/workflows/pull_request.yml

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
on: pull_request
2+
name: process pull request
3+
jobs:
4+
branchCleanup:
5+
name: branch cleanup
6+
runs-on: ubuntu-latest
7+
steps:
8+
- uses: actions/checkout@master
9+
- name: branch cleanup
10+
uses: jessfraz/branch-cleanup-action@master
11+
env:
12+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
13+
- name: post gif on fail
14+
uses: jessfraz/shaking-finger-action@master
15+
env:
16+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

.github/workflows/push.yml

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
on: push
2+
name: check build on push
3+
jobs:
4+
gradleBuild:
5+
name: gradle build
6+
runs-on: ubuntu-latest
7+
steps:
8+
- uses: actions/checkout@master
9+
- name: gradle build
10+
uses: MrRamych/gradle-actions@12909e7ccd3ed7e3b39c2f3ac350d6849eabeaf3
11+
with:
12+
args: build

0 commit comments

Comments
 (0)