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
if (!verify.verify(publicKey.key, Buffer.from(signature, "base64"), "base64")) {
318
+
thrownewError("Signature does not match payload");
319
+
}
320
+
};
321
+
```
322
+
281
323
#### Implement secret revocation and user notification in your secret alert service
282
324
283
325
For {% data variables.product.prodname_secret_scanning %} in public repositories, you can enhance your secret alert service to revoke the exposed secrets and notify the affected users. How you implement this in your secret alert service is up to you, but we recommend considering any secrets that {% data variables.product.prodname_dotcom %} sends you messages about as public and compromised.
Copy file name to clipboardExpand all lines: content/github/developing-online-with-codespaces/managing-encrypted-secrets-for-codespaces.md
+7Lines changed: 7 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -12,6 +12,7 @@ versions:
12
12
13
13
{% endnote %}
14
14
15
+
15
16
### About encrypted secrets for {% data variables.product.prodname_codespaces %}
16
17
17
18
You can add encrypted secrets to your user account that you want to use in your codespaces. For example, you may want to store and access the following sensitive information as encrypted secrets.
@@ -24,6 +25,12 @@ You can choose which repositories should have access to each secret. Then, you c
24
25
25
26
### Adding a secret
26
27
28
+
{% note %}
29
+
30
+
**Note:** Tokens starting with GITHUB_ are reserved
31
+
32
+
{% endnote %}
33
+
27
34
{% data reusables.user_settings.access_settings %}
28
35
{% data reusables.user_settings.codespaces-tab %}
29
36
1. To the right of "Codespaces secrets", click **New secret**.
Copy file name to clipboardExpand all lines: content/github/searching-for-information-on-github/understanding-the-search-syntax.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -48,7 +48,7 @@ Query | Example
48
48
<code><=<em>YYYY</em>-<em>MM</em>-<em>DD</em></code> | **[cats created:<=2012-07-04](https://github.com/search?utf8=%E2%9C%93&q=cats+created%3A%3C%3D2012-07-04&type=Issues)** matches issues with the word "cats" that were created on or before July 4, 2012.
49
49
<code><em>YYYY</em>-<em>MM</em>-<em>DD</em>..<em>YYYY</em>-<em>MM</em>-<em>DD</em></code> | **[cats pushed:2016-04-30..2016-07-04](https://github.com/search?utf8=%E2%9C%93&q=cats+pushed%3A2016-04-30..2016-07-04&type=Repositories)** matches repositories with the word "cats" that were pushed to between the end of April and July of 2016.
50
50
<code><em>YYYY</em>-<em>MM</em>-<em>DD</em>..*</code> | **[cats created:2012-04-30..*](https://github.com/search?utf8=%E2%9C%93&q=cats+created%3A2012-04-30..*&type=Issues)** matches issues created after April 30th, 2012 containing the word "cats."
51
-
<code>*..<em>YYYY</em>-<em>MM</em>-<em>DD</em></code> | **[cats created:*..2012-04-30](https://github.com/search?utf8=%E2%9C%93&q=cats+created%3A*..2012-07-04&type=Issues)** matches issues created before July 4th, 2012 containing the word "cats."
51
+
<code>*..<em>YYYY</em>-<em>MM</em>-<em>DD</em></code> | **[cats created:*..2012-07-04](https://github.com/search?utf8=%E2%9C%93&q=cats+created%3A*..2012-07-04&type=Issues)** matches issues created before July 4th, 2012 containing the word "cats."
0 commit comments