You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: .github/CONTRIBUTING.md
+5-4Lines changed: 5 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -4,7 +4,7 @@
4
4
5
5
* While contributing make sure to make all your changes before creating a Pull Request, as our pipeline builds each commit after the PR is open.
6
6
* Read, and fill the Pull Request template
7
-
* If this is a fix for a typo in code or documentation in the README please file an issue
7
+
* If this is a fix for a typo (in code, documentation, or the README) please file an issue and let us sort it out. We do not need a PR
8
8
* If the PR is addressing an existing issue include, closes #\<issue number>, in the body of the PR commit message
9
9
* If you want to discuss changes, you can also bring it up in [#dev-talk](https://discordapp.com/channels/354974912613449730/757585807061155840) in our [Discord server](https://discord.gg/YWrKVTn)
10
10
@@ -96,7 +96,7 @@ If you are proposing additional packages to be added, ensure that you added the
The ARM variants can be built on x86_64 hardware using `multiarch/qemu-user-static`
109
-
```
109
+
110
+
```bash
110
111
docker run --rm --privileged multiarch/qemu-user-static:register --reset
111
112
```
112
113
113
114
Once registered you can define the dockerfile to use with `-f Dockerfile.aarch64`.
114
115
115
-
## Update the chagelog
116
+
## Update the changelog
116
117
117
118
If you are modifying the Dockerfiles or any of the startup scripts in [root](https://github.com/linuxserver/docker-wireguard/tree/master/root), add an entry to the changelog
Copy file name to clipboardExpand all lines: .github/PULL_REQUEST_TEMPLATE.md
+5-1Lines changed: 5 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -15,7 +15,11 @@
15
15
16
16
**What does this PR do? Why is it needed?**
17
17
18
-
**How can be tested?**
18
+
<!--- If this is a fix for a typo (in code, documentation, or the README) please file an issue and let us sort it out. We do not need a PR -->
19
+
<!--- Ask yourself if this modification is something the whole userbase will benefit from, if this is a specific change for corner case functionality or plugins please look at making a Docker Mod or local script https://blog.linuxserver.io/2019/09/14/customizing-our-containers/ -->
20
+
<!--- That if the PR is addressing an existing issue include, closes #<issue number> , in the body of the PR commit message -->
21
+
<!--- You have included links to any files / patches etc your PR may be using in the body of the PR commit message -->
22
+
<!--- We maintain a changelog of major revisions to the container at the end of readme-vars.yml in the root of this repository, please add your changes there if appropriate -->
19
23
20
24
> Provide well detailed instructions to test this PR
Copy file name to clipboardExpand all lines: .github/workflows/external_trigger.yml
+16-4Lines changed: 16 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -7,18 +7,20 @@ jobs:
7
7
external-trigger-master:
8
8
runs-on: ubuntu-latest
9
9
steps:
10
-
- uses: actions/checkout@v2.3.3
10
+
- uses: actions/checkout@v3.1.0
11
11
12
12
- name: External Trigger
13
13
if: github.ref == 'refs/heads/master'
14
14
run: |
15
15
if [ -n "${{ secrets.PAUSE_EXTERNAL_TRIGGER_WIREGUARD_MASTER }}" ]; then
16
16
echo "**** Github secret PAUSE_EXTERNAL_TRIGGER_WIREGUARD_MASTER is set; skipping trigger. ****"
17
+
echo "Github secret \`PAUSE_EXTERNAL_TRIGGER_WIREGUARD_MASTER\` is set; skipping trigger." >> $GITHUB_STEP_SUMMARY
17
18
exit 0
18
19
fi
19
20
echo "**** External trigger running off of master branch. To disable this trigger, set a Github secret named \"PAUSE_EXTERNAL_TRIGGER_WIREGUARD_MASTER\". ****"
21
+
echo "External trigger running off of master branch. To disable this trigger, set a Github secret named \`PAUSE_EXTERNAL_TRIGGER_WIREGUARD_MASTER\`" >> $GITHUB_STEP_SUMMARY
20
22
echo "**** Retrieving external version ****"
21
-
EXT_RELEASE=$(curl -sX GET https://api.github.com/repos/WireGuard/wireguard-tools/tags | jq -r .[0].name)
0 commit comments