Skip to content

Commit 6f369f6

Browse files
committed
crete action
1 parent 41a806c commit 6f369f6

File tree

7 files changed

+1727
-1
lines changed

7 files changed

+1727
-1
lines changed

.github/workflows/diff.yml

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
name: Diff
2+
3+
on:
4+
push:
5+
branches: [ master ]
6+
7+
jobs:
8+
build:
9+
runs-on: ubuntu-latest
10+
11+
steps:
12+
- name: Checkout
13+
uses: actions/checkout@v2
14+
- name: Diff
15+
id: diff
16+
uses: ./
17+
- name: Show
18+
run: echo ${{ steps.diff.outputs.diff }}

.gitignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ typings/
8080

8181
# Nuxt.js build / generate output
8282
.nuxt
83-
dist
83+
# dist
8484

8585
# Gatsby files
8686
.cache/

action.yml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
name: "git merge diff"
2+
description: "generate git merge diff between tags"
3+
runs:
4+
using: "node12"
5+
main: "dist/index.js"
6+
branding:
7+
icon: "git-merge"
8+
color: "black"

0 commit comments

Comments
 (0)