This is an automated email from the ASF dual-hosted git repository.

jcamacho pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/incubator-xtable.git


The following commit(s) were added to refs/heads/main by this push:
     new 6684440  Move github actions under .github folder (#373)
6684440 is described below

commit 6684440a1f5dac06f82a0b9347eb859c50ad5310
Author: Jesús Camacho Rodríguez <jcama...@apache.org>
AuthorDate: Thu Mar 7 13:41:37 2024 -0800

    Move github actions under .github folder (#373)
---
 {.azure-pipelines => .github}/workflows/azure_ci.js            | 0
 {.azure-pipelines => .github}/workflows/azure_ci_check.yml     | 0
 {.azure-pipelines => .github}/workflows/scheduled_workflow.yml | 2 +-
 3 files changed, 1 insertion(+), 1 deletion(-)

diff --git a/.azure-pipelines/workflows/azure_ci.js 
b/.github/workflows/azure_ci.js
similarity index 100%
rename from .azure-pipelines/workflows/azure_ci.js
rename to .github/workflows/azure_ci.js
diff --git a/.azure-pipelines/workflows/azure_ci_check.yml 
b/.github/workflows/azure_ci_check.yml
similarity index 100%
rename from .azure-pipelines/workflows/azure_ci_check.yml
rename to .github/workflows/azure_ci_check.yml
diff --git a/.azure-pipelines/workflows/scheduled_workflow.yml 
b/.github/workflows/scheduled_workflow.yml
similarity index 97%
rename from .azure-pipelines/workflows/scheduled_workflow.yml
rename to .github/workflows/scheduled_workflow.yml
index 1d4b81c..3c774f1 100644
--- a/.azure-pipelines/workflows/scheduled_workflow.yml
+++ b/.github/workflows/scheduled_workflow.yml
@@ -46,7 +46,7 @@ jobs:
           script: |
             // Cron schedule may not be reliable so giving buffer time to 
avoid missing recent PRs
             const since = new Date(new Date().getTime() - (900 * 
1000)).toISOString();
-            const query = `repo:${context.repo.owner}/${context.repo.repo} 
type:pr state:open base:master updated:>=${since}`;
+            const query = `repo:${context.repo.owner}/${context.repo.repo} 
type:pr state:open base:main updated:>=${since}`;
             const openPrs = await 
github.paginate(github.rest.search.issuesAndPullRequests, {
               q: query,
               sort: 'updated',

Reply via email to