-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added github action to miror and sync with gitlab
- Loading branch information
1 parent
7b9c277
commit 07ade33
Showing
2 changed files
with
30 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
name: Automated testing | ||
|
||
on: [push] | ||
|
||
jobs: | ||
call-testing-workflow: | ||
uses: digitalutsc/reusable_workflows/.github/workflows/ci-testing.yml@main | ||
with: | ||
module_name: drupal_libcal | ||
composer_name: digitalutsc/drupal_libcal | ||
test_suite: functional |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
name: Mirror and run GitLab CI | ||
|
||
on: [push] | ||
|
||
jobs: | ||
build: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v1 | ||
- name: Mirror + trigger CI | ||
uses: SvanBoxel/gitlab-mirror-and-ci-action@master | ||
with: | ||
args: "https://git.drupalcode.org/project/drupal_libcal" | ||
env: | ||
GITLAB_HOSTNAME: "git.drupal.org" | ||
GITLAB_USERNAME: "project_89613_bot" | ||
GITLAB_PASSWORD: ${{ secrets.GITLAB_PASSWORD }} | ||
GITLAB_PROJECT_ID: "89613" | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |