Skip to content

Commit 895f851

Browse files
authored
Merge pull request #22 from dseomn/cmdline-no-secrets
Don't specify the password on the command line https://www.netmeister.org/blog/passing-passwords.html has a decent overview of the security issues with that. Since this is interactive, getting curl to prompt for the password is probably the easiest alternative. From https://curl.se/docs/manpage.html#-u > If you simply specify the username, curl prompts for a password. I don't have an easy way to test the actual command in this doc, but the flag does seem to behave as documented at least: ``` $ curl --user [email protected] https://google.com Enter host password for user '[email protected]' ``` Fixes gitgitgadget/gitgitgadget#1843
2 parents 55522b9 + fcc9bf9 commit 895f851

File tree

3 files changed

+22
-5
lines changed

3 files changed

+22
-5
lines changed

.github/workflows/pr.yml

+20-3
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ jobs:
66
runs-on: ubuntu-latest
77
permissions:
88
contents: write
9+
issues: write
910
steps:
1011
- uses: actions/checkout@v4
1112
with:
@@ -19,7 +20,7 @@ jobs:
1920
git add -A \*.html &&
2021
git diff-index --cached --exit-code HEAD -- ||
2122
echo "need-to-commit=yes" >>$GITHUB_OUTPUT
22-
- name: commit & push
23+
- name: commit
2324
if: steps.check.outputs.need-to-commit == 'yes'
2425
run: |
2526
git config user.name "${{github.actor}}" &&
@@ -28,5 +29,21 @@ jobs:
2829
git update-index --refresh &&
2930
git diff-files --exit-code &&
3031
git diff-index --cached --exit-code HEAD -- &&
31-
git push
32-
32+
git bundle create git.bundle ${{ github.event.pull_request.head.sha }}..${{ github.event.pull_request.head.ref }}
33+
- name: commit
34+
if: steps.check.outputs.need-to-commit == 'yes' && github.event.pull_request.head.repo.full_name == github.event.pull_request.base.repo.full_name
35+
run: git push
36+
- name: publish bundle
37+
id: bundle
38+
if: steps.check.outputs.need-to-commit == 'yes' && github.event.pull_request.head.repo.full_name != github.event.pull_request.base.repo.full_name
39+
uses: actions/upload-artifact@v4
40+
with:
41+
name: bundle
42+
path: git.bundle
43+
- name: instructions how to fetch bundle
44+
if: steps.check.outputs.need-to-commit == 'yes' && github.event.pull_request.head.repo.full_name != github.event.pull_request.base.repo.full_name
45+
run: |
46+
body='The HTML pages are out of date. Please download the `bundle` artifact from ${{ steps.bundle.outputs.artifact-url }}, extract the `git.bundle` file from it, then run `git pull /path/to/git.bundle ${{ github.event.pull_request.head.ref }}` and then push to the PR branch'
47+
echo "::error::$body" >&2
48+
echo "$body" >>$GITHUB_STEP_SUMMARY
49+
exit 1

reply-to-this.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ <h3 id="if-your-mail-program-stores-mails-in-maildir-format-thunderbird-mutt-alp
3333
<p>Simply copy the file to the <code>new</code> subfolder in your mailer&#39;s maildir folder.</p>
3434
<h3 id="if-you-use-webmail-gmail-and-friends">If you use webmail (GMail and friends)</h3>
3535
<p>You can use the command-line tool <code>curl</code> (provided that your version has IMAP support):</p>
36-
<pre><code class="language-sh">curl -g --user &quot;&lt;email&gt;:&lt;password&gt;&quot; --url &quot;imaps://imap.gmail.com/INBOX&quot; -T /path/to/raw.txt
36+
<pre><code class="language-sh">curl -g --user &quot;&lt;email&gt;&quot; --url &quot;imaps://imap.gmail.com/INBOX&quot; -T /path/to/raw.txt
3737
</code></pre>
3838

3939
</div>

reply-to-this.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,5 +15,5 @@ Simply copy the file to the `new` subfolder in your mailer's maildir folder.
1515
You can use the command-line tool `curl` (provided that your version has IMAP support):
1616

1717
```sh
18-
curl -g --user "<email>:<password>" --url "imaps://imap.gmail.com/INBOX" -T /path/to/raw.txt
18+
curl -g --user "<email>" --url "imaps://imap.gmail.com/INBOX" -T /path/to/raw.txt
1919
```

0 commit comments

Comments
 (0)