Skip to content

Commit 2a2091e

Browse files
committed
Update action name
1 parent e6fbd0f commit 2a2091e

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
lines changed

Dockerfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
FROM alpine
22

3-
LABEL "name"="git-push"
3+
LABEL "name"="github-push"
44
LABEL "maintainer"="Adam Dobrawy <[email protected]>"
55
LABEL "version"="0.0.1"
66

7-
LABEL "com.github.actions.name"="cURL for GitHub Actions"
8-
LABEL "com.github.actions.description"="Runs cURL in an Action"
7+
LABEL "com.github.actions.name"="Git push for GitHub Actions"
8+
LABEL "com.github.actions.description"="Runs 'git push' to GitHub in an Action"
99
LABEL "com.github.actions.icon"="upload-cloud"
1010
LABEL "com.github.actions.color"="green"
1111

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# GitHub Action for Git Push
1+
# GitHub Action for GitHub Push
22

33
The GitHub Actions for pushing to GitHub repository local changes authorizing using GitHub token.
44

@@ -17,7 +17,7 @@ jobs:
1717
...
1818
- run: |
1919
...
20-
- uses: ad-m/git-push-action@master
20+
- uses: ad-m/github-push-action@master
2121
with:
2222
repo-token: ${{ secrets.GITHUB_TOKEN }}
2323
```

action.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
name: 'Git Push'
2-
description: 'Pushing to Git repository local changes'
1+
name: 'GitHub Push'
2+
description: 'Pushing to GitHub repository local changes'
33
author: 'ad-m'
44
inputs:
55
github_token:

0 commit comments

Comments
 (0)