Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

testing adding action #14

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions .github/badge.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
Thanks for contributing to the Greater Good Pledge! If you'd like to
put a badge in your repository, you can use this link:

[![https://good-labs.github.io/greater-good-pledge/assets/images/badge.svg](https://good-labs.github.io/greater-good-pledge/assets/images/badge.svg)](https://good-labs.github.io/greater-good-pledge)

When released versions are available, you will optionally be able to specify the
version. If you have questions, or want to generally engage with the Good Labs
Community, we are on Gitter:

[![Gitter](https://badges.gitter.im/good-labs/community.svg)](https://gitter.im/good-labs/community?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge)
12 changes: 12 additions & 0 deletions .github/main.workflow
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
workflow "Post Merge Message" {
on = "pull_request"
resolves = ["post message"]
}

action "post message" {
uses = "vsoch/post-merge-message@master"
secrets = ["GITHUB_TOKEN"]
env = {
POST_MESSAGE = ".github/badge.md"
}
}