Skip to content

Commit 5c3ccc2

Browse files
authored
Replace datadog/squid with ubuntu/squid Docker image (#1002)
* test with ubuntu/squid * Start a contributing guide * remove link
1 parent 1f9a0c2 commit 5c3ccc2

File tree

2 files changed

+29
-1
lines changed

2 files changed

+29
-1
lines changed

.github/workflows/test.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -142,7 +142,7 @@ jobs:
142142
options: --dns 127.0.0.1
143143
services:
144144
squid-proxy:
145-
image: datadog/squid:latest
145+
image: ubuntu/squid:latest
146146
ports:
147147
- 3128:3128
148148
env:

CONTRIBUTING.md

+28
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
# Contributing
2+
3+
## Submitting a pull request
4+
5+
1. Fork and clone the repository
6+
1. Configure and install the dependencies: `npm install`
7+
1. Create a new branch: `git checkout -b my-branch-name`
8+
1. Make your change, add tests, and make sure the tests still pass: `npm run test`
9+
1. Make sure your code is correctly formatted: `npm run format`
10+
1. Update `dist/index.js` using `npm run build`. This creates a single javascript file that is used as an entrypoint for the action
11+
1. Push to your fork and submit a pull request
12+
1. Pat yourself on the back and wait for your pull request to be reviewed and merged
13+
14+
Here are a few things you can do that will increase the likelihood of your pull request being accepted:
15+
16+
- Write tests.
17+
- Keep your change as focused as possible. If there are multiple changes you would like to make that are not dependent upon each other, consider submitting them as separate pull requests.
18+
19+
## Resources
20+
21+
- [How to Contribute to Open Source](https://opensource.guide/how-to-contribute/)
22+
- [Using Pull Requests](https://help.github.com/articles/about-pull-requests/)
23+
- [GitHub Help](https://help.github.com)
24+
- [Writing good commit messages](http://tbaggery.com/2008/04/19/a-note-about-git-commit-messages.html)
25+
26+
Thanks! :heart: :heart: :heart:
27+
28+
GitHub Actions Team :octocat:

0 commit comments

Comments
 (0)