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 d5385d1 commit 8c9ed6fCopy full SHA for 8c9ed6f
2 files changed
.github/workflows/ci.yml
@@ -121,7 +121,7 @@ jobs:
121
uses: ./
122
with:
123
ignoreActions: "test-docker-image,Create Release,Wait for status checks"
124
- checkInterval: 1
+ checkInterval: 30
125
env:
126
GITHUB_TOKEN: "${{ secrets.GITHUB_TOKEN }}"
127
- name: "Assert Output: status is successful"
wait.php
@@ -47,6 +47,6 @@
47
...$shas,
48
)->then(function (string $state) use($logger) {
49
$logger->info('Final status: ' . $state);
50
- echo PHP_EOL, '::set-output name=status::' . $state, PHP_EOL;
+ file_put_contents(getenv('GITHUB_OUTPUT'), 'status=' . $state . "\n", FILE_APPEND);
51
})->done();
52
})();
0 commit comments