ins-queue-actions 1.2.132 → 1.2.136
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -12,10 +12,10 @@ jobs:
|
|
|
12
12
|
permissions:
|
|
13
13
|
contents: write # Needed to commit and push version changes
|
|
14
14
|
steps:
|
|
15
|
-
- uses: actions/checkout@
|
|
16
|
-
- uses: actions/setup-node@
|
|
15
|
+
- uses: actions/checkout@v5
|
|
16
|
+
- uses: actions/setup-node@v5
|
|
17
17
|
with:
|
|
18
|
-
node-version:
|
|
18
|
+
node-version: 24
|
|
19
19
|
|
|
20
20
|
- name: Bump version and commit changes
|
|
21
21
|
id: version_bump
|
|
@@ -35,19 +35,19 @@ jobs:
|
|
|
35
35
|
id-token: write # Required for trusted publishing with OIDC (if using trusted publishing)
|
|
36
36
|
contents: read
|
|
37
37
|
steps:
|
|
38
|
-
- uses: actions/checkout@
|
|
38
|
+
- uses: actions/checkout@v5
|
|
39
39
|
with:
|
|
40
40
|
fetch-depth: 0
|
|
41
41
|
|
|
42
|
-
- uses: actions/setup-node@
|
|
42
|
+
- uses: actions/setup-node@v5
|
|
43
43
|
with:
|
|
44
|
-
node-version:
|
|
44
|
+
node-version: 24
|
|
45
45
|
# No registry-url to allow Trusted Publishing OIDC authentication
|
|
46
46
|
# setup-node automatically uses NODE_AUTH_TOKEN if registry-url is set
|
|
47
47
|
|
|
48
48
|
- name: Upgrade npm for Trusted Publishing support
|
|
49
|
-
run: npm install -g npm@
|
|
50
|
-
# Trusted Publishing requires npm 11.5.1
|
|
49
|
+
run: npm install -g npm@11
|
|
50
|
+
# Trusted Publishing requires npm 11.5.1+; npm@12 global install is missing sigstore
|
|
51
51
|
|
|
52
52
|
- name: Configure npm registry (for Trusted Publishing)
|
|
53
53
|
run: npm config set registry https://registry.npmjs.org/
|
package/notificationTemplates.js
CHANGED
|
@@ -1116,6 +1116,10 @@ module.exports = {
|
|
|
1116
1116
|
templateName: "RFQ_SUBMITTED",
|
|
1117
1117
|
requiredParams: ["type", "data"],
|
|
1118
1118
|
},
|
|
1119
|
+
RFQ_REOPENED: {
|
|
1120
|
+
templateName: "RFQ_REOPENED",
|
|
1121
|
+
requiredParams: ["type", "data"],
|
|
1122
|
+
},
|
|
1119
1123
|
RFQ_COMPLETED: {
|
|
1120
1124
|
templateName: "RFQ_COMPLETED",
|
|
1121
1125
|
requiredParams: ["type", "data"],
|