Skip to content

Commit

Permalink
Update build.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
DragonDev07 authored Sep 23, 2024
1 parent 88b30a9 commit e58dd36
Showing 1 changed file with 0 additions and 20 deletions.
20 changes: 0 additions & 20 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,23 +28,3 @@ jobs:

- name: Test MeepMeep
run: ./gradlew --no-daemon test

- name: Report status
uses: actions/github-script@v6
with:
script: |
const { context, getOctokit } = require('@actions/github');
const { owner, repo } = context.repo;
const pull_request = context.payload.pull_request;
if (pull_request) {
const octokit = getOctokit(process.env.GITHUB_TOKEN);
await octokit.repos.createCommitStatus({
owner,
repo,
sha: pull_request.head.sha,
state: 'success',
context: 'Build MeepMeep',
description: 'The build succeeded!',
});
}

0 comments on commit e58dd36

Please sign in to comment.