You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@shiro.apache.org by bm...@apache.org on 2021/02/08 11:01:55 UTC

[shiro-site] branch scms-action created (now f182762)

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

bmarwell pushed a change to branch scms-action
in repository https://gitbox.apache.org/repos/asf/shiro-site.git.


      at f182762  scms action

This branch includes the following new commits:

     new f182762  scms action

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.



[shiro-site] 01/01: scms action

Posted by bm...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

bmarwell pushed a commit to branch scms-action
in repository https://gitbox.apache.org/repos/asf/shiro-site.git

commit f1827622c192b8a8bd9425da925112f219a73b84
Author: Benjamin Marwell <bm...@apache.org>
AuthorDate: Mon Feb 8 12:01:50 2021 +0100

    scms action
---
 .github/workflows/scms.yml | 30 ++++++++++++++++++++++++++++++
 1 file changed, 30 insertions(+)

diff --git a/.github/workflows/scms.yml b/.github/workflows/scms.yml
new file mode 100644
index 0000000..ce2a534
--- /dev/null
+++ b/.github/workflows/scms.yml
@@ -0,0 +1,30 @@
+# This is a basic workflow to help you get started with Actions
+
+name: CI
+
+# Controls when the action will run. 
+on:
+  # Triggers the workflow on push or pull request events but only for the master branch
+  push:
+    branches: [ master ]
+  pull_request:
+    branches: [ master ]
+
+  # Allows you to run this workflow manually from the Actions tab
+  workflow_dispatch:
+
+# A workflow run is made up of one or more jobs that can run sequentially or in parallel
+jobs:
+  # This workflow contains a single job called "build"
+  build:
+    # The type of runner that the job will run on
+    runs-on: ubuntu-latest
+
+    # Steps represent a sequence of tasks that will be executed as part of the job
+    steps:
+      # Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
+      - uses: actions/checkout@v2
+
+      # Runs a single command using the runners shell
+      - name: Check using scms
+        uses: scms/scms-github-action@main