We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d9a10ee commit 91544e7Copy full SHA for 91544e7
.github/workflows/test.yml
@@ -17,6 +17,7 @@ jobs:
17
npm run all
18
test: # make sure the action works on a clean machine without building
19
runs-on: ubuntu-latest
20
+ needs: build
21
steps:
22
- uses: actions/checkout@v4
23
- uses: ./
src/main.ts
@@ -56,6 +56,7 @@ async function sendMessageToWeComBot(
56
default:
57
core.error('Unsupported message type')
58
}
59
+ core.info(`${MessageType.MARKDOWN} ${type} ${payload}`)
60
61
try {
62
await axios.post(url, payload)
0 commit comments