mirror of
https://github.com/aljazceru/satshkd-vercel.git
synced 2025-12-17 05:04:24 +01:00
14 lines
329 B
JavaScript
14 lines
329 B
JavaScript
const core = require('@actions/core');
|
|
const poll = require('./btcpoll');
|
|
|
|
// modify this to ping url, get data and update, commit and push file to github repo
|
|
try {
|
|
const res = poll.main()
|
|
console.log("main response: ", res)
|
|
core.setOutput('✅ Success');
|
|
|
|
} catch (error) {
|
|
core.setFailed(`🛑 ${error.message}`);
|
|
}
|
|
|