You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
1. If you did not enable GitHub Actions in your forked repository, please enable it. See also [Disabling or limiting GitHub Actions for a repository](https://docs.github.com/en/github/administering-a-repository/disabling-or-limiting-github-actions-for-a-repository) for more details.
82
+
2. It is possible your branch is based on the old \`master\` branch in Apache Spark, please sync your branch to the latest master branch. For example as below:
83
+
\`\`\`bash
84
+
git fetch upstream
85
+
git rebase upstream/master
86
+
git push origin YOUR_BRANCH --force
87
+
\`\`\``
88
+
}
89
+
})
90
+
} else {
91
+
const runID = runs.data.workflow_runs[0].id
92
+
93
+
if (runs.data.workflow_runs[0].head_sha != context.payload.pull_request.head.sha) {
94
+
throw new Error('There was a new unsynced commit pushed. Please retrigger the workflow.');
0 commit comments